Convert PDF to TIFF using Linux Command Line (FAX)

I would like to convert PDF to TIFF for fax use. I need to keep the quality as much as possible, but I want to have a short duration (as few grays as possible). I know Copia does a great job, but I would like to have a Linux command line tool.

Do you know a solution (even non-free or non-opensource) that exists?

Basic image conversion tools that everyone knows can do fax, but the quality is poor and the duration ...

Thank!

+3


source to share


1 answer


This slows down the process quite a bit, but you can use supercamping for better quality:

convert -density 288 input.pdf -resize 25% output.tif



From the imagemagick forum .

+1


source







All Articles