Problems resampling using convert
Posted: 2008-02-20T12:00:17-07:00
Hello,
I have a script that runs convert from the command line to resample a large number of images to 72 dpi to make them more web friendly. On some images, however, the processing stalls and consumes most of the available memory on my computer. I've tried waiting but usually end up having to kill the process. Other images resample with no problem. Any ideas what may be causing this? This is the command the script runs:
Also, I see that other command line tools, such as mogrify, also have resample options. Is there any difference between the two?
Thanks in advance!
I have a script that runs convert from the command line to resample a large number of images to 72 dpi to make them more web friendly. On some images, however, the processing stalls and consumes most of the available memory on my computer. I've tried waiting but usually end up having to kill the process. Other images resample with no problem. Any ideas what may be causing this? This is the command the script runs:
Code: Select all
usr/bin/convert -quality 80 -resample 72x72 $file_1 $file_3
Thanks in advance!