I want to generate an Image with 3 Layers
Layer One is a background-image oder color. (Background)
Layer Two is an annotate Text with font. (Shadow of Layer Three)
Layer Three is also an annotate Text with font. (Text)
Now i want to blur single Layers by using the Example from anthony (see link)
viewtopic.php?f=1&t=9841&p=30648&hilit=blur+query
but it don't works (Imagemagick Version 6.6.7). The Sublayer are blurred like the parent Layer.
Code: Select all
convert -size 446x96 -channel RGBA \
\( xc:transparent gradient:#FFFF00FF-#FF0000FF -bordercolor #000000FF -border 2 -blur 0x0 \) \
\( xc:transparent -font PATHTOFONT\BaroqueScript.ttf -pointsize 40 -gravity NorthWest -kerning 0 -stroke #FF660060 -strokewidth 1 \
-fill #00000060 -annotate +15+15 "Home" -blur 3x3 \) \
\( xc:transparent -font PATHTOFONT\BaroqueScript.ttf -pointsize 40 -gravity NorthWest -kerning 1 -stroke #000000 -strokewidth 1 \
-tile gradient:#FF0000-#FFFF00 -annotate +4+4 "Home" -blur 0x0 \) \
-flatten PATHTOIMG\output.png
Can somebody tell me what i'm doing wrong...