I'm running IM 6.2.6.

For some reason, I can't get convert to overwrite a JPEG comment. My
source files already contain a JPEG comment I want to overwrite. The
following attempts don't work:

convert image1.jpg -comment "test" image2.jpg (this leaves the
original comment intact)

convert image1.jpg +comment -comment "test" image2.jpg (this also
leaves the original comment intact)

convert image1.jpg -strip -comment "test" image2.jpg (this removes the
original comment, but does not replace it with the new one)

The only thing I have gotten to work so far is this two step process:

convert image1.jpg -strip image2.jpg
convert image2.jpg -comment "test" image3.jpg

I'd like to get it working with one command, if possible. Any suggestions?

Thanks.
Mike Boone
http://boonedocks.net/mike

_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to