Hello:
I'm newbie with ImageMagick, I have a monochrome CAD draft printed to pdf, and I loke to convert it to a Tif picture, I tried:
convert toto.pdf -monochrome toto.tif
the result is a tif file with a very poor resolution, how can I improve quality??
Thank you
pdf to tif:poor resolution
-
- Posts: 1015
- Joined: 2005-03-21T21:16:57-07:00
Re: pdf to tif:poor resolution
Specify a density (dpi) for the PDF before reading it.
Pete
Code: Select all
convert -density 300 toto.pdf -monochrome toto.tif
Sorry, my ISP shutdown all personal webspace so my MagickWand Examples in C is offline.
See my message in this topic for a link to a zip of all the files.
See my message in this topic for a link to a zip of all the files.
Re: pdf to tif:poor resolution
thank you for the tip, it works great.
But I noticed that straight lines are converted with too many notches, (which become smaller with increasing density)
can a straight line in pdf, be converted to a straight line in tif?
Thank you
But I noticed that straight lines are converted with too many notches, (which become smaller with increasing density)
can a straight line in pdf, be converted to a straight line in tif?
Thank you