Glow text on image... how to place on picture..
Posted: 2007-12-10T14:21:55-07:00
so, I'm working on adding glowing text to an image, and I've gotten pretty far with the examples, and I can
produce it on a white background.
My problem however is with how to put this on a picture, instead of using the "-background white" part.
I can't start with a picture, because the shadow option shadows the whole picture.
I can't use -background transparent, because the shadow/glow doesn't show up.
I guess my main problem is handling multiple frames in a single command and getting them to merge correctly.
Any hints?
produce it on a white background.
Code: Select all
convert -size 200x200 xc:none -pointsize 40 -fill green -draw \"text 0,90 'Glowing'\" -matte \( +clone -background red -shadow 90x7+2+2 \) +swap -background white -flatten output.gif
I can't start with a picture, because the shadow option shadows the whole picture.
I can't use -background transparent, because the shadow/glow doesn't show up.
I guess my main problem is handling multiple frames in a single command and getting them to merge correctly.
Any hints?