How to create a TIF from a big TIF ?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Antoine4851
Posts: 6
Joined: 2015-07-21T02:45:54-07:00
Authentication code: 1151

How to create a TIF from a big TIF ?

Post by Antoine4851 »

Hi,

I have a TIF of 500 pages : InitialFile.tif
I want to create a new TIF with the pages 120 to 160 from InitialFile.tif.
How can I do this with a command line ?

Many thanks

antoine
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: How to create a TIF from a big TIF ?

Post by snibgo »

Code: Select all

convert in.tiff[120-160] out.tiff
snibgo's IM pages: im.snibgo.com
Antoine4851
Posts: 6
Joined: 2015-07-21T02:45:54-07:00
Authentication code: 1151

Re: How to create a TIF from a big TIF ?

Post by Antoine4851 »

it's work fine, thanks.
Antoine4851
Posts: 6
Joined: 2015-07-21T02:45:54-07:00
Authentication code: 1151

Re: How to create a TIF from a big TIF ?

Post by Antoine4851 »

Hi,

How to accelerate the process ?
For example, it's taking around 15 minutes to create a TIF with the first 50 pages from a TIF of 1500 pages...
Post Reply