how can I add some text "before" an existing image using imagemagick? That means I have an image (a signature) and I would like to add some text (the current date) before the image, on the left side (not above or bottom). How can I do that? Ive tried it with append, but that havent worked for me :-(
And here it is how it should looks afterwards with the current date
Ive tried it with this code so far:
convert signature.png label:21.10.2019 -gravity West +append signature-with-date.png
Now Ive tried it with other order:
convert -gravity west label:21.10.2019 signature.png +append signature-with-date.png
But there is only white space before the image added, no text is shown
Ive tried it now with:
magick \( -size 400x -background white -gravity west label:21.10.2019 \) signature.png +append signature-with-date.png
Still not working