I'm having a problem with labeling an Image. I want to lower the label a little bit, so it sits nice in the center of the "label-box" (canvas?). I tried almost every example on the ImageMagick Text-Handling page (http://www.imagemagick.org/Usage/text/#label), but couldn't get it working.
So here is the code I'm using:
Code: Select all
montage \
-label "WEIHNACHTSFEIER CINEMAXX 2017" path/to/the/image.jpg \
-gravity center \
-font Times-Bold \
-pointsize 170 \
-fill DeepPink \
-geometry +0+0 \
-background black /home/pi/temp.jpg
I want the label to sit a bit lower, so it is in the middle of the black background.
Thanks for your help!