Okay. I'm not sure exactly what a blur blending effect option would look like. Possibilities include:
1. Blur the black text and place it over the background.
Code: Select all
convert ^
background.jpg ^
( text.png -blur 0x2 -geometry +16+193 ) ^
-compose Over -composite b1.jpg
2. Blur the background, then place the black text over it.
Code: Select all
convert ^
( background.jpg -blur 0x5 ) ^
( text.png -geometry +16+193 ) ^
-compose Over -composite b2.jpg
3. Blur the background where the letters are, and leave the rest of the background alone.
Code: Select all
convert ^
background.jpg ^
( +clone -blur 0x10 ) ^
( +clone -fill White -colorize 100 ^
( text.png -geometry +16+193 ) ^
-composite ^
) ^
-compose Over -composite b3.jpg
4. Blur the background except where the letters are.
Code: Select all
convert ^
background.jpg ^
( +clone -blur 0x10 ) ^
( +clone -fill White -colorize 100 ^
( text.png -geometry +16+193 ) ^
-composite ^
-negate ^
) ^
-compose Over -composite b4.jpg
I have varied the degree of blurring so the words are always readable.
Windows script. This uses "^" for line continuation. Adjust for other languages.