Put your text onto a transparent background, not a colored background or just annotate the text onto the image directly where you want it using -annotate.
Unix syntax:
try one of these. note it would have been easier if you had provided separate images. I had to cut out 01_original.png
Code: Select all
convert 01_original.png \
\( -size 400x75 xc:none -font Candice -pointsize 72 \
-fill white -annotate +25+65 "Contestati" -blur 0x5 \
-fill white -annotate +25+65 "Contestati" \) \
-gravity south -geometry +0+25 -compose over -composite 99_final_2.jpg
Code: Select all
convert 01_original.png \
\( -background none -font Candice -pointsize 72 \
-fill white label:"Contestati" -blur 0x5 \) \
\( -background none -font Candice -pointsize 72 \
-fill white label:"Contestati" \) \
\( -clone 1,2 -compose over -composite \) \
-delete 1,2 -gravity south -geometry +0+25 \
-compose over -composite 99_final_3.jpg
Code: Select all
convert 01_original.png \
\( -size 400x75 xc:none -font Candice -pointsize 72 \
-fill white -annotate +25+65 "Contestati" -blur 0x5 \
-fill white -annotate +25+65 "Contestati" \) \
-gravity south -geometry +0+25 \
-define compose:args=40,100 -compose dissolve -composite 99_final_4.jpg
Not sure why you want the dissolve?