Convert PDF to TIFF Problems

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
Ricoshady

Convert PDF to TIFF Problems

Post by Ricoshady »

Using the Linux command line tool "convert" , I'm able to convert a PDF to TIFF, but the quality is quite poor. Even a cheap converter on my windows platform does a much better job.

Any ideas on how I can increase the quality? Help will be appreciated.

Also, when I use Group4 Compression, it comes out black, what is going on?

At this point im using

convert file.pdf file.tiff and also tried convert file.pdf -compress Group4 file.tiff
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Convert PDF to TIFF Problems

Post by fmw42 »

use supersamping to get better quality

convert -density 288 image.pdf -resize 25% image.tiff
_Mr_E
Posts: 2
Joined: 2011-03-28T08:17:17-07:00
Authentication code: 8675308

Re: Convert PDF to TIFF Problems

Post by _Mr_E »

This supersampling seems to slow down the process quite a bit. I used a package at my last company(adultpdf) and it seemed to convert almost instantly, with higher quality and smaller filesize. I understand ImageMagick is free so I can't really complain but why does this functionality seem so much poorer? Could I be doing something wrong or is this just a case of you get what you pay for?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Convert PDF to TIFF Problems

Post by fmw42 »

Post Reply