这是我想要设置图片网址并动态查找此图片的高度和宽度的图片。
<asp:Image ID="imgLogo" runat="server"/>
//分配图像路径。
string Path= Server.MapPath("~/Images/testImage.jpg")
System.Drawing.Bitmap img = new System.Drawing.Bitmap(Path);
//获取图像的高度和宽度。
int height=0, width=0;
height = img.Height;
width = img.Width;
答案 0 :(得分:0)
你必须使用显式转换,我们特别要求编译器将值转换为另一种数据类型。
string Path= Server.MapPath("~/Images/testImage.jpg")
System.Drawing.Bitmap img = new System.Drawing.Bitmap(Path);
int height = (int)img.Height;
int width = (int)img.Width;