Converting tif files with mogrify is taking ages.

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
skirk1983
Posts: 1
Joined: 2011-03-31T01:41:13-07:00
Authentication code: 8675308

Converting tif files with mogrify is taking ages.

Post by skirk1983 »

Hi,

I should convert 160 tif files with these properties:

Dimensions: 1275x1753
150x150 dpi
Depth: 8 bit.
compression: LZW

to tif files with these properties:

Dimensions: 2496x3507
300x300 dpi
Depth: 1 bit.
compression: CCITT T.6

I'm trying to convert on 10 tif files with this mogrify command: mogrify -resize 2496x3507 -monochrome -compress group4 -density 300x300 *tif.

I have tried to run this with the ImageMagick 64x dynamic version on a windows 7 x64 client, but it frozed the computer. I think it used all the memory of 4 GB. I could not use the computer because it was extremely slow. Of the 10 tif files some is 14 mb large.

Should this conversion not be possible? What are I'm missing here?

Please help.

Skirk
Denmark
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Converting tif files with mogrify is taking ages.

Post by fmw42 »

You are probably running out of RAM. see http://www.imagemagick.org/Usage/files/#massive
Post Reply