检索图像到图片框时,为什么我的错误参数无效?

时间:2014-10-08 10:36:54

标签: c#

我已编写此代码用于从数据库检索图像到图片框。我收到了这些错误

  

'参数无效'

此行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);
你能解决这个错误吗?

1 个答案:

答案 0 :(得分:0)

提供流时,它需要以下文件之一:

  

BMP

     

GIF

     

JPEG

     

PNG

     

TIFF

确保您的文件采用其中一种格式