Keeping resolution when converting EPS to JPG?

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
fcaserio
Posts: 26
Joined: 2007-03-19T15:22:12-07:00

Keeping resolution when converting EPS to JPG?

Post by fcaserio »

I'm having problems when I convert an EPS file to JPG

My original image has
2278px x 3430px
24,11cm x 36,3cm
240 dpi

The resulting image has
683px x 1029px
7,23cm x 10,89cm
240 dpi

I've tried to use the -units command but the result is the same

It's should be a simple conversion:

Code: Select all

convert C:\...\image.eps C:\...\image.jpg
convert -units PixelsPerInch C:\...\image.eps C:\...\image.jpg
Anyone knows how to make IM keep the original resolution on the resulting JPG?
Post Reply