ASP.NET要获取一张图片的长、宽、大小等属性,请问用什么方法
展开全部
string strUrl= "2.gif ";//你的图片的地址
System.Net.HttpWebRequest hwreq =(System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(strUrl);
System.Net.HttpWebResponse hwrep =(System.Net.HttpWebResponse)hwreq.GetResponse();
hwrep.ContentLength)//图片字节
System.Drawing.Image bmp=System.Drawing.Image.FromStream(hwrep.GetResponseStream());
宽:bmp.Width
高:bmp.Height
System.Net.HttpWebRequest hwreq =(System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(strUrl);
System.Net.HttpWebResponse hwrep =(System.Net.HttpWebResponse)hwreq.GetResponse();
hwrep.ContentLength)//图片字节
System.Drawing.Image bmp=System.Drawing.Image.FromStream(hwrep.GetResponseStream());
宽:bmp.Width
高:bmp.Height
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询