Montage and annotate - annotation is over all montage images #7072
-
ImageMagick version7.1.1-27 Operating system, version and so onmacOS via Homebrew DescriptionHi, My current command is.... montage 1.jpg 2.jpg 3.jpg -geometry 600x600^+100+100 -tile x1 -fill black -pointsize 200 -gravity east -draw "text 0,0 'hello world'" montage.jpg Do I need to do something different eg montage it, then add the -draw as second process, or draw the text over the last frame first then montage? Can it be done in one command? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
You could write the output of the |
Beta Was this translation helpful? Give feedback.
-
|
Cheers that works fine and keeps the file handling tidy - I assume then there isn't a way to run it in one? What I'm doing is combining two photos and an event logo on the end - to automatically generate photo strips in a Photo Booth from multiple photos - and I want to write the datestamp under the logo discreetly somehow so I can tie it back to the file on the computer later. (ie if someone wants a 2nd print later on) Later edit:
And that works great for placing on the last time - although I couldn't place into the padding it makes positioning easier |
Beta Was this translation helpful? Give feedback.
-
|
|
Beta Was this translation helpful? Give feedback.
You could write the output of the
magick montagecommand tomiff:-for miff format to stdout, and pipe that to anothermagickthat does whatever you want.