we've ran into a strange problem.
We convert CMYK EPS into RGB PNG with color profiles using this command line :
Code: Select all
convert -density 300 in.eps -profile Photoshop5DefaultCMYK.icc -profile AdobeRGB1998.icc +clip-path '#1' -fuzz 100% -transparent white -fuzz 0% -strip -format PNG24 -compress LZW -quality 95 -type Optimize -depth 8 -trim -resize 237x195 out.png
But it seems that with some kind of EPS (PS?), convert will look for a wmf2eps binary, as if it was SVG or WMF.
Identify on this suspect file :
Code: Select all
115746.eps PS 3416x2813=>3417x2813 3417x2813+0+0 16-bit ColorSeparation DirectClass 36.67mb
it looks like a PS file, is there something different to make in the command line? Or is this file the problem?
Thanks for your help