.NET获得上传图片宽高

Posted 邢帅杰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.NET获得上传图片宽高相关的知识,希望对你有一定的参考价值。

代码:

//图片大小限制---------------------------
                    System.Drawing.Image txtStoryimage = System.Drawing.Image.FromStream(txtStoryImg.PostedFile.InputStream);
                    if (txtStoryimage.Width > 360 * (1 + ConfigHelper.PicRandValue) || txtStoryimage.Width < 360 * (1 - ConfigHelper.PicRandValue))
                    {
                        Alert.ShowInParent("图片高度应该在" + 360 * (1 - ConfigHelper.PicRandValue) + "-" + 360 * (1 + ConfigHelper.PicRandValue) + "象素之间!");
                        return;

                    }
                    if (txtStoryimage.Height > 452 * (1 + ConfigHelper.PicRandValue) || txtStoryimage.Height < 452 * (1 - ConfigHelper.PicRandValue))
                    {
                        Alert.ShowInParent("图片高度应该在" + 452 * (1 - ConfigHelper.PicRandValue) + "-" + 452 * (1 + ConfigHelper.PicRandValue) + "象素之间!");
                        return;
                    }

  

以上是关于.NET获得上传图片宽高的主要内容,如果未能解决你的问题,请参考以下文章

如何获得图片的宽高像素数??

ueditor上传图片是哪个文件夹,如何限制 上传图片的大小(宽高)。

vue 限制上传图片的宽高(基于iviewUI)

FileReader获取上传图片的宽高

简单写一下图片上传获取宽高的方法

图片上传判断大小及宽高