Deal all,
I'm trying to convert a PDF file to a monochrome TIFF file with the following command:
convert -monochrome file.pdf file.tif
However, the resulting TIFF image has a bad quality compared with the original PDF file. There is any additional option that I need to use to preserve the image quality?
I need to have a black and white images, to be processed by a digital content system.
Thank you in an advance.
Best regards,
João Ferreira Pires
Converting a PDF file to a TIFF file without loosing quality
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Converting a PDF file to a TIFF file without loosing quality
try
convert -colorspace rgb -density 400 input.pdf -resize 25% -monochrome output.tif
convert -colorspace rgb -density 400 input.pdf -resize 25% -monochrome output.tif
Re: Converting a PDF file to a TIFF file without loosing quality
Thank you for your prompt answer.
I'll try and I'll give you the results.
Best regards,
João Ferreira Pires
I'll try and I'll give you the results.
Best regards,
João Ferreira Pires
Re: Converting a PDF file to a TIFF file without loosing quality
The additional parameters used with convert application solve the problems I had felt related with quality lost when I convert PDF to TIF file.
Once again, thank you for your support.
Best regards,
João Ferreira Pires
Once again, thank you for your support.
Best regards,
João Ferreira Pires