pictrue获取图片的三种方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pictrue获取图片的三种方式相关的知识,希望对你有一定的参考价值。
1.绝对路径:
this.pictureBox2.Image=Image.FromFile("D:\\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.pxkt.com/logo.gif).GetResponse().GetResponseStream());
this.pictureBox2.Image=Image.FromFile("D:\\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.pxkt.com/logo.gif).GetResponse().GetResponseStream());
以上是关于pictrue获取图片的三种方式的主要内容,如果未能解决你的问题,请参考以下文章