"Dick Dijk" on  wrote...
| When I do an "identify -verbose 11475.eps" I get the output below. You
| can see that magick thinks that it is a 72 dpi RGB image, but it's
| actually a CMYK 300dpi image!
|
| Why is this, are EPS files not supported? I know the EPS file contains
| a preview, I suspect that the preview is 72 dpi, so Magick finds the
| wrong characteristics (of the preview instead of the native). Is there
| workaround for this? (By the way the geometry is also wrong)
| 

It isn't that EPS files are not supported.  They are.
But its how they are supported that causes the result you see.

EPS files are a Vector Graphics Image format, while IM deal only with
Raster Graphic Formats.

For details see
  http://www.cit.gu.edu.au/~anthony/graphics/imagick6/formats/#vector

IM can not deal with EPS directly.

Basically this means that it converted an EPS file to a Raster format
and part of that conversion results in the changes you see.

If you need an EPS to remain EPS,  then don't use IM.

If you want 300dpi,  set a -density 300 before reading EPS and
converting it to an internal raster image.

As for CMYK preservation, the cove for handing EPS files of multiple
colors is already extremely complex, which means prevering the color
style may not be posible.


  Anthony Thyssen ( System Programmer )    <[EMAIL PROTECTED]>
 -----------------------------------------------------------------------------
   `` Intriging! I wish I had more time to discuss this matter ''
   `` Why don't you have more time? ''
   `` Because I must detonate in 75 seconds! '' -- thermostellar bomb #20
                                  -- Classic SciFi Movie ``DarkStar'', 1974
 -----------------------------------------------------------------------------
     Anthony's Home is his Castle     http://www.cit.gu.edu.au/~anthony/
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to