Resize large images (>10000 pixels)
Posted: 2012-04-23T18:02:58-07:00
ImageMagick-6.7.6-Q16 Win32, XP SP3
I found an error in resizing large images when one of the image dimensions is >10,000 pixels.
Given an input image of 10192x7230px results in an image of 722x512px.
Resize the input image to 1019x723px results and you get an image of 512x363px
The error appears to be due to treating the dimensions as text once the number exceeds 10,000 (which is freaking weird) and is consistent across the batch of images I processed.
I found an error in resizing large images when one of the image dimensions is >10,000 pixels.
Code: Select all
convert in.tif -resize 512x512^> out.jpg
Resize the input image to 1019x723px results and you get an image of 512x363px
The error appears to be due to treating the dimensions as text once the number exceeds 10,000 (which is freaking weird) and is consistent across the batch of images I processed.