Negated Text?
Posted: 2009-10-09T17:32:35-07:00
Hello,
How to make negated label? I give you an example:
Thank you!
How to make negated label? I give you an example:
Thank you!
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=14839
Code: Select all
convert mask.png matte:- | convert - -negate mask2.png
convert mask2.png -fill white -pointsize 45 -draw "rotate -30 gravity Center fill white text 0,0 'Negated Text' " +matte mask3.png
composite -compose CopyOpacity mask3.png image.jpg stamp.png
convert stamp.png -negate negated_stamp.png
composite -gravity center image.jpg negated_stamp.png result.jpg
Here is an example, but it may not be the most efficient. But it works.fmw42 I'm not sure that I understand you correctly. Can you give example commands, please!
Code: Select all
convert image.jpg negated_stamp.png -compose over -composite result.jpg
Code: Select all
composite mask3.png image.jpg -gravity center -compose difference result.jpg