码迷,mamicode.com
首页 > Web开发 > 详细

.net 后台获取服务器图片实际大小

时间:2014-10-13 20:02:36      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:os   strong   文件   sp   on   bs   服务器   .net   app   

如果你想要在后台获取图片大小,可以 
System.Drawing.Image img = System.Drawing.Image.FromFile( Server.MapPath("image/2.gif")); 
//如果是上传的文件,可以用System.Drawing.Image img = System.Drawing.Image.FromStream(this.File1.PostedFile.InputStream); 
int height = img.Height; 
int width = img.Width;

/*设置图片的宽和高*/

img.Height = bmp.Height;
img.Width = bmp.Width;

.net 后台获取服务器图片实际大小

标签:os   strong   文件   sp   on   bs   服务器   .net   app   

原文地址:http://www.cnblogs.com/gogood/p/4022517.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!