I convert multipage TIFF to PNG and take result:
abc.tif -> abc-0.png , abc-1.png, abc-10.png
If convert this PNG files to multipage TIF then pages 0,1,10,11,12...2,20,...
How make ouput filenames like abc-00.png, abc-01.png...etc.
Multipage TIF output file number format
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Multipage TIF output file number format
Be explicit how you want the filenames, for example:
This creates files abc_000000.png, abc_000001.png, abc_000002.png etc. These will sort in alphabetical order.
Code: Select all
convert abc.tif abc_%06d.png
snibgo's IM pages: im.snibgo.com
Re: Multipage TIF output file number format
Tnx! %02d works as i wanted.