Komal Singh wrote:
> Hi,
> I have a requirement to convert PDF files to TIFF format. For this I am using 
> the below command options:
> convert.exe -compress Group4 -density 200 -monochrome C:\InputFile.PDF 
> C:\testing\OutputFile.tiff 
>  
> It works for small files like 200 KB or less but takes too much time for big 
> files e.g 300 KB file takes 3 minutes and 20 seconds which is not accepted . 
> Also, this consumes very large amount of memory and CPU usage is around 100% 
> most of the time. 
>  
> Please suggest any other set of command options I can use to minimize the 
> time and consumes less memory.

Hmmm.  There's some measure of apples to crankcases in this comparison, 
but here's a run on my 2.8 GHz P4 (not Core or later) running Linux:

   $ ls -l *.pdf
   -rw-rw-r-- 1 dnl dnl 354390 2008-05-07 17:34 ENC-M200-LCD-manual.pdf
   $ time convert -compress Group4 -density 200 -monochrome \
   ENC-M200-LCD-manual.pdf x.tif

   real    0m27.371s
   user    0m25.146s
   sys     0m1.224s
   $

So, 27 seconds elapsed time v. your 3 minutes.

What does your system look like?
What CPU do you have?
How much memory is on your system?
What else is running?
Are you paging?
What does your disk system look like?

-- 
David N. Lombard
Rossmoor, Orange County, CA

CONFIDENTIALITY NOTICE: This is an email. It is the electronic
equivalent of a postcard. It has been split up into hundreds or
thousands of packets, blasted throughout the globe, logged,
scanned, filtered, parsed, grepped and heuristically analyzed by
countless computers as well as humans. Nothing sent via email
is confidential or read only by the intended recipient.
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to