c# ImageResizer上传图片超过3200x3200尺寸限制

修改web.config配置,设置大小,或者关闭限制(
totalBehavior="ignorelimits"
)
<configuration> 

<configSections> 
    <section name="resizer" type="ImageResizer.ResizerSection" 
requirePermission="false" /> 
</configSections> 
<appSettings> 
.... 
</appSettings> 
<resizer> 
    <sizelimits imageWidth="0" imageHeight="0" totalWidth="5200" totalHeight="5200" totalBehavior="throwexception" /> 
</resizer> 
posted @   末郁  阅读(157)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示