I am reading in text to create an image with a transparent background with the text in it:
Code: Select all
convert -size 1000x1000 -font Arial caption:@text.txt -background none -fill black -channel alpha text.gif
text.gif is the outputted file...
Next I attempt to overlay this onto an existing photo:
Code: Select all
composite -gravity center text.gif note2.jpg compose_over.gif
Am I doing something obvious wrong here?? Can Anyone help?
Thank you!!