📜  c# 显示图像 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:48.686000             🧑  作者: Mango

代码示例1
// open file dialog   
OpenFileDialog open = new OpenFileDialog();  
// image filters  
open.Filter = "Image Files(*.jpg; *.jpeg; *.gif; *.bmp)|*.jpg; *.jpeg; *.gif; *.bmp";  
if (open.ShowDialog() == DialogResult.OK) {  
    // display image in picture box  
    pictureBox1.Image = new Bitmap(open.FileName);  
    // image file path  
    textBox1.Text = open.FileName;  
}