> /usr/local/ImageMagick-6.4.0-3/bin/convert -resample 300x300 -resize \
>   1000x1000! $INFILE $OUTFILE

Try

  convert -size 1000x1000 $INFILE -resize 1000x1000!  $OUTFILE

Does that work for you?  The resample option needlessly enlarges the image
before it is shrunk with the resize option.  The size option is an 
optimization that only works with JPEG images.

We did use your command to convert the BOS2CDLP007.jpg with ImageMagick-6.4.0-3
without complaint on our Linux box.  Try this command:

  convert -limit memory 32mb -limit map 64mb -resample 300x300 -resize \
    1000x1000! $INFILE $OUTFILE

and make sure your /tmp partition has at least 3GB of free space.  Does that
command work for you?
_______________________________________________
Magick-bugs mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-bugs

Reply via email to