Say I have a folder foo
with multiple PNG files. Is there a way to use convert
or mogrify
to merge the PNG files into a single TIFF file?
I have tried:
mogrify -format tiff -adjoin *.png
but I get unrecognized option -adjoin
Using Version: ImageMagick 6.6.1-5 2010-04-23 Q16
, this works just fine:
convert *.png all.tiff
To merge them into a single file as an image sequence you can use the answer given by Matthias Osidio.
-append creates a single image where the images in the original set are stacked top-to-bottom.
mogrify -append *.png output.tiff
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With