我已编写此代码用于从数据库检索图像到图片框。我收到了这些错误
'参数无效'
此行pictureBox1.Image = Image.FromStream(stm);
Byte[] imagebyte = new Byte[0];
imagebyte = (Byte[])(dr["Pic_Image"]);
MemoryStream stm = new MemoryStream(imagebyte);
pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
pictureBox1.Image = Image.FromStream(stm);
你能解决这个错误吗?
答案 0 :(得分:0)
提供流时,它需要以下文件之一:
BMP
GIF
JPEG
PNG
TIFF
确保您的文件采用其中一种格式