Page 1 of 1

Splitting 8-page Tiff into 7-Page

Posted: 2017-07-19T12:03:19-07:00
by agnotorious
Hi all,

I have been searching through these forums but have yet to be able to find a solution to my issue.
I have multipage tiffs (8 pages) and I want to rewrite them into a 7 page tiff by extracting the last page and retaining the original file name. Is there a quick command I can use that would help with this? Much thanks,

Re: Splitting 8-page Tiff into 7-Page

Posted: 2017-07-19T13:52:04-07:00
by fmw42

Code: Select all

convert image.tiff[0-6] newimage.tiff
This will keep the first 7 pages (numbers 0 to 6) and remove the last one and save the first 7 pages to the new image.

Re: Splitting 8-page Tiff into 7-Page

Posted: 2017-07-20T12:29:02-07:00
by agnotorious
That's amazing. I had no clue you could do it that simply. Thanks!

Re: Splitting 8-page Tiff into 7-Page

Posted: 2017-07-20T13:28:12-07:00
by fmw42