Shadowed Text over an existing image
Posted: 2008-05-27T14:25:42-07:00
This may be overly simple but I can't seem to get my head around the problem. I am able to get the examples found on Anthony's excellent resource working just fine, but I am getting stuck. Here is what I am trying to do.
I would like to create some text and place it on an image. This works...
It creates white text "Journey" with a black drop shadow. The problem is it blurs the image also. I just want to blur the text not the background image.
I am not sure how to get it to apply the -blur 0x3 to the text only.
Any help will be greatly appreciated.
Terry Riegel
I would like to create some text and place it on an image. This works...
Code: Select all
convert -font TRAJANPB.TTF -pointsize 72 -fill black -annotate +28+68 'Journey' -blur 0x3 -font TRAJANPB.TTF -pointsize 72 -fill white -annotate +25+65 'Journey' logo.jpg logoshadow.jpg
I am not sure how to get it to apply the -blur 0x3 to the text only.
Any help will be greatly appreciated.
Terry Riegel