I would like to join various PNG images horizontally in Mac, either using the console or Automator. Is this possible? How?

An example:

Given these two images:

enter image description here

enter image description here

The result would be:

enter image description here

The images have the same size but their size is not constrained. The number of images is between 2 and a few dozen.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You can use ImageMagick's append to combine multiple images together. +append for horizontal, -append for vertical.

convert mrdUM.png 477kv.png +append appended.png

enter image description here

convert mrdUM.png 477kv.png -append vertical.png

enter image description here

Reference


To install ImageMagick, I suggest either using MacPorts or Homebrew. After installing either one, it's as simple as

port install imagemagick

brew install imagemagick

link|improve this answer
It would be great to include a short explanation of how to install ImageMagick on a Mac. – slhck Oct 10 '11 at 18:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.