I am pretty new to imagemagick and have some problems. I don't know how to tell imagemagic that I want to have new line somewhere in my text. From input file it wouldn't be parsed.
My code:
Code: Select all
#!/bin/bash
convert -size 700x \
-background none \
-pointsize 45 \
caption:@- \
text.png
composite -compose Multiply -gravity center text.png background.jpg result.png
rm text.png
How to do that?
Thanks,
Vito.