Convert command loss image Quality (AI to PDF convertor)

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
manish

Convert command loss image Quality (AI to PDF convertor)

Post by manish »

Hi Friends,

While converting AI file to PDF/JPEG, I found that it loses quality of output file. I think I am missing some parameter with 'convert' command.

I am using the below command
convert.exe -density 288 +adjoin D:\Manish\A.ai -density 288 D:\AA.pdf%02d.pdf -flatten D:\AAd.pdf

Please suggest me the parameters and its implementation to improve the image quality.

Thanks

Regards
Manish
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Convert command loss image Quality (AI to PDF convertor)

Post by anthony »

AI image file format is essentially postscript. and Both PS and PDF are image vector formats.

ImageMagick is a bitmap image format! It will convert the vector image to a bitmap image before wrapping that into a vector image format. Bitmap images have a specific density which by default is a low 72 dpi. The result is, as you note horrible.

For more detail see
A word about Vector Image formats
http://www.imagemagick.org/Usage//formats/#vector
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply