Page 1 of 1

PS to Tiff conversion

Posted: 2016-01-07T07:28:07-07:00
by Gopalakrishnan
Hi,

Please guide me on my below request.

I am using ImageMagick command line utility to convert ps to tiff image. An I am using following command:

convert sample.ps sample.tiff

After doing the conversion, the quality of converted tiff image is so poor. So I used following command:

convert -density 600x600 sample.ps sample.tiff

This second command takes more time to process and also the size of the file reaches 50 MB. The ps file contains simple text only.

Can anyone help me on this.

Thanks,
Gopal

Re: PS to Tiff conversion

Posted: 2016-01-07T07:45:10-07:00
by magick
Try this command:
  • convert -density 300x300 sample.ps -resize 25% sample.tiff

Re: PS to Tiff conversion

Posted: 2016-01-13T10:08:12-07:00
by marios
Thanks a lot, i've got the same problem with file size and that's helped :)