PS to Tiff conversion

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
Gopalakrishnan
Posts: 1
Joined: 2016-01-07T07:20:33-07:00
Authentication code: 1151

PS to Tiff conversion

Post 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
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: PS to Tiff conversion

Post by magick »

Try this command:
  • convert -density 300x300 sample.ps -resize 25% sample.tiff
marios
Posts: 2
Joined: 2016-01-13T09:52:16-07:00
Authentication code: 1151

Re: PS to Tiff conversion

Post by marios »

Thanks a lot, i've got the same problem with file size and that's helped :)
ImageMagick user. Design like Culina aus Polen
Post Reply