[Magick-bugs] 6.4.0-3 convert drops core on AIX 5.3 platform =>
memory.c line 443 attempting a memcpy() operation
duc.sequere.aut.de.via.decede at imagemagick.org
duc.sequere.aut.de.via.decede at imagemagick.org
Fri Apr 4 06:24:28 PDT 2008
> /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?
More information about the Magick-bugs
mailing list