I tried some setting combination
assumeMaxImageWidth = 100 and MaxImageHeight = 150 and upload a image with dimesion larger then this setting
case 1:
<security name="RestrictUploadedImageDimension">false</security>
<security name="AutoResizeUploadedImages">false</security>
the image will resize to 100 x 150 (fix 100 x 150 on any dimension image)
case 2:
<security name="RestrictUploadedImageDimension">true</security>
<security name="AutoResizeUploadedImages">false</security>
cannot upload
case 3:
<security name="RestrictUploadedImageDimension">false</security>
<security name="AutoResizeUploadedImages">true</security>
the image will resize by ratio. the image will become 100 x ??? or ??? x 150
case 4:
<security name="RestrictUploadedImageDimension">true</security>
<security name="AutoResizeUploadedImages">true</security>
the image will resize by ratio. the image will become 100 x ??? or ??? x 150. same as case 3
what is the setting to make it without any resize on upload?