Resize Image using ImageMagick
I am trying to resize a jpg that is 6000x6000 down to 1024x1024 using ImageMagick. I run
%convert out.jpg -resize 1024x1024 out2.jpg
and it appears to execute correctly without errors, but when I open up out2.jpg the bottom 1/3 of the image is missing. The orignal image (out.jpg) was created using ImageMagick by tiling 6 images together in 3 rows and 2 columns so I am not sure if this has anything to do with it or not (out.jpg looks fine when I view it).
|