Convert vs Mogrify - not workign for text overlay...
Posted: 2009-07-23T08:27:16-07:00
Hi all if I do this:
I get an image with text printed at the bottom (not exactly what I want, but this is a test)
But if I do this:
I get no change to the original image.
I have managed to get text onto the image all sorts of ways using convert. As soon as I try to do it with mogrify I get no text... It seems to read an process the image, but no text.
Reason for using mogrify is to speed up the process (using file globbing)
On WinXP with IM : ImageMagick 6.4.9-3 2009-02-05 Q8 OpenMP http://www.imagemagick.org
What am I doing wrong, i thought mogrify was a drop in alternative to convert.
Code: Select all
convert spdob0002.tif -gravity "South" -draw "text 0,3 'Moshe and Friend'" output_file.jpg
But if I do this:
Code: Select all
mogrify spdob0002.tif -gravity "South" -draw "text 0,3 'Moshe and Friend'"
I have managed to get text onto the image all sorts of ways using convert. As soon as I try to do it with mogrify I get no text... It seems to read an process the image, but no text.
Reason for using mogrify is to speed up the process (using file globbing)
On WinXP with IM : ImageMagick 6.4.9-3 2009-02-05 Q8 OpenMP http://www.imagemagick.org
What am I doing wrong, i thought mogrify was a drop in alternative to convert.