Using -write to output to multiple files
Posted: 2016-11-21T00:58:45-07:00
I'm trying to convert a multiframe tiff file into single file pngs and also create thumbnails at the same time.
With this code i get a thumbnail for each of the frames but I only get the first frame for the converted file.
How can i make -write output all frames?
Code: Select all
convert +adjoin image.tif -write image%0d.png -thumbnail 1000 thumb%0d.png
How can i make -write output all frames?