Assume I have a couple of independent pictures (.e.g.*.jpg or *.png).
I want to paste them (one below the other) into one target picture.
How can I do this with IM?
Ben
How can I paste pictures from command line?
Re: How can I paste pictures from command line?
Code: Select all
convert -background none -gravity Center image1.jpg image2.png -append vertical.png
Re: How can I paste pictures from command line?
Ok. Thank you.Bonzo wrote:Code: Select all
convert -background none -gravity Center image1.jpg image2.png -append vertical.png
But hwo would the command look like if I want to append/paste the pictures from left to right and not one below the other?
Ben