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

图片上传判断大小及宽高

时间:2017-10-27 13:21:21      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:isp   var   span   sed   判断   分享   none   adb   ted   

此处上传一张图片示例:

技术分享
1   HttpPostedFileBase file_IO = request.Files[key]; //key==0
2 
3   System.IO.BinaryReader reader = new System.IO.BinaryReader(file_IO.InputStream);
4  byte[] file_Bytes = reader.ReadBytes(file_IO.ContentLength);           
5  var length = file_Bytes.Length;
6 
7   System.Drawing.Image image = System.Drawing.Image.FromStream(file_IO.InputStream);
8   var width = image.Width;   //px
9   var height = image.Height;   //单位是 px
View Code

 

 

图片上传判断大小及宽高

标签:isp   var   span   sed   判断   分享   none   adb   ted   

原文地址:http://www.cnblogs.com/leap-li/p/7742375.html

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