首页 > 编程 > C# > 正文

pictureBox1的Image属性获得图片路径的三种方法

2023-05-09 18:58:29
字体:
来源:转载
供稿:网友

1.绝对路径
this.pictureBox2.Image=Image.FromFile("E://001.jpg"); 

2.相对路径:
Application.StartupPath;  
可以得到程序根目录  
this.pictureBox2.Image=Image.FromFile(Application.StartupPath "//1.gif"); 

3.获得网络图片的路径
this.pictureBox2.Image= Image.FromStream(System.Net.WebRequest.Create(http://www.VeVb.com/images/logo.gif).GetResponse().GetResponseStream());

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表