C#取得图片宽度与高度

System.Drawing.Image myimage = Image.FromFile(@imagepath);

System.Drawing.Size size = new Size(myimage.Width, myimage.Height);
string imagewidth = size.Width.ToString();//图片的宽度
string imagehight = size.Height.ToString();//图片的高度

你可能感兴趣的:(C#取得图片宽度与高度)