Search found 2 matches

by NikhilV
2017-02-21T23:28:23-07:00
Forum: Users
Topic: Split multipage TIF,TIFF images into individual images and RETAIN original filename after conversion.
Replies: 4
Views: 16260

Re: Split multipage TIF,TIFF images into individual images and RETAIN original filename after conversion.

Hi GeeMack, Thank you for your prompt response. The solution works really well for my requirement, with a minor issue. The below code gives works well if I use A.tif in it. convert A.tif -set filename:f "%[t]_%[fx:t+1]" +adjoin "%[filename:f].tif" What I tried: convert *.tif -set filename:f "%[t ...
by NikhilV
2017-02-21T06:02:56-07:00
Forum: Users
Topic: Split multipage TIF,TIFF images into individual images and RETAIN original filename after conversion.
Replies: 4
Views: 16260

Split multipage TIF,TIFF images into individual images and RETAIN original filename after conversion.

Hi All, I have a set of Multi Page TIF image files, which I am trying to split into individual images. I have tried using convert, which does the trick, but does not give me an option to retain the original file name. Example: A.TIF - Original File (10 Pages) I use : Convert *.tif %d.tif Output : 10 ...