Code: Select all
"C:\Program Files (x86)\ImageMagick-6.8.2-Q16\convert.exe" -density 300 "c:\temp\Bush.pdf" -threshold 15% -type bilevel "c:\temp\Test00.pdf"
But on a server (Windows 2008 Server) with the same 2 programs installed, the same command converts the 337KB pdf file to a 4,157 KB file in black and white, in 2 minutes and eventually grabbing almost 1 GB of memory. In a PDF viewer, the result looks the same as the desktop results.
Changing the command to
Code: Select all
"C:\Program Files (x86)\ImageMagick-6.8.2-Q16\convert.exe" -density 300 "c:\temp\Bush.pdf" -threshold 15% -type bilevel -compress fax "c:\temp\Test00.pdf"
How can I get Imagick to work on the server the same way it works on my desktop system?