我正在使用 Orchard V1.7 中的 MediaProcessing 模块。源图像是大型 TIFF 文件(通常高达 4928 x 3264 像素)。我在图像配置文件上设置了两个过滤器:
- 调整为 200 x 200
- 将图像格式化为 Jpg
当我显示页面时,我记录了一个异常
2013-08-12 16:30:55,982 [22] Orchard.MediaProcessing.Shapes.MediaShapes - An error occured while rendering shape Lightbox for image /OrchardLocal/Media/Default/Stamps%20of%20Australia/ClaytonTremlett244.tif
ImageResizer.Plugins.Basic.SizeLimits+SizeLimitException (0x80004005):
The dimensions of the output image (2668x3364) exceed the maximum permitted dimensions of 3200x3200.
ImageResizer 文档指出输出的默认最大文件大小为3200 x 3200,但我要求的大小为 200 x 200。我已将此记录为问题 (1642)。
我的问题是,有谁知道如何在通过 ImageResizer 托管 API 使用 ImageResizer 时关闭最大文件大小限制检查,就像 Orchard 选择的那样?