C#将图片加载为byte[],处理,然后再输出到PictureBox上该怎么办?
我的代码中间处理未添加,我是想测试一下能不能输出来,结果,是什么问题?求过路大神赐教!!T.T...
我的代码
中间处理未添加,我是想测试一下能不能输出来,
结果
,
是什么问题?求过路大神赐教!!T.T 展开
中间处理未添加,我是想测试一下能不能输出来,
结果
,
是什么问题?求过路大神赐教!!T.T 展开
展开全部
string path="test.jpg";
using (FileStream file = new FileStream(path, FileMode.Open))
{
byte[] b = new byte[file.Length];
file.Read(b, 0, b.Length);
MemoryStream stream = new MemoryStream(b);
Player.Image=Image.FromStream(stream);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询