把图片读取到内存流并显示
Posted gy66520
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了把图片读取到内存流并显示相关的知识,希望对你有一定的参考价值。
if (File.Exists("mainbg.png"))//判断当前文件夹下图片是否存在
{
using (FileStream fs = new FileStream("mainbg.png",FileMode.Open))
{
int len = (int)fs.Length;
byte[] buf = new byte[len];
fs.Read(buf, 0, len);
MemoryStream ms = new MemoryStream();
ms.Write(buf,0,len);
splitContainer.Panel2.BackgroundImage = Image.FromStream(ms);
splitContainer.Panel2.BackgroundImageLayout = ImageLayout.Stretch;
}
}
以上是关于把图片读取到内存流并显示的主要内容,如果未能解决你的问题,请参考以下文章