使用位图?给错误?

时间:2011-10-24 08:01:37

标签: asp.net

在Web应用程序中,我使用Bitmap查找图像的宽度和高度。当我编写代码时,它给出错误:参数不是有效的。

 Bitmap bmp = new Bitmap(Server.MapPath("./Images/" + ds.Tables[0].Rows[0]["image"].ToString()));   

我收到错误你能帮助我吗?谢谢。

2 个答案:

答案 0 :(得分:0)

错误表示您正在保存的图像具有无效的图像数据(状态),或者已经使用了用于保存图像的文件名。

答案 1 :(得分:0)

可能你只需要使用这个

System.Drawing.Image bmp = System.Drawing.Image.FromFile(Server.MapPath("YourPathHere"));