图片上传判断大小及宽高
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图片上传判断大小及宽高相关的知识,希望对你有一定的参考价值。
此处上传一张图片示例:
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
以上是关于图片上传判断大小及宽高的主要内容,如果未能解决你的问题,请参考以下文章
100个 Unity实用技能 | Unity 在代码中 动态改变RectTransform位置及宽高 的方法整理