c#获取图片的高和宽
时间:2016-07-06 11:42:45
收藏:0
阅读:400
Bitmap pic = new Bitmap(图片文件名);
int width = pic.Size.Width; // 图片的宽度
int height = pic.Size.Height; // 图片的高度
原文:http://www.cnblogs.com/qinweizhi/p/5646348.html
评论(0)