I\'ve seen various posts around StackOverflow, but basically I want to do something along the lines of:
convert *.png new.tiff
And the tiff has
Finally figured it out. It seems you have to build from source to get this feature working correctly. I used all versions from homebrew without any luck. To do this make sure you get rid of any old versions, so do the following:
brew uninstall imagemagick
brew unlink imagemagick
brew install imagemagick --build-from-source
brew unlink imagemagick && brew link imagemagick
and it should work fine.I'm very surprised this isn't documented more, specifically converting multiple images into a single multi-paged tiff. From here you can then do convert *.png mynewimg.tiff
(if using globbing) if not you can do convert first.png second.png third.png mynewimg.tiff
It seems the only option is to build from source though, so if multi-paged tiffs aren't being generated then do the above.