Opening an eps file with an embedded tiff preview appears to be opening the preview tiff image and not the actual file.
ImageMagick.MagickImage img = new ImageMagick.MagickImage("test.eps");
returns an MagickImage object with these properties: Ept 212x233 8-bit CMYK 193.05kB
identify.exe "C:\test.eps" -verbose returns
Format: EPT (Encapsulated PostScript with TIFF preview)
Class: DirectClass
Geometry: 895x984+0+0
Base geometry: 898x988
Resolution: 304x304
Print size: 2.94408x3.23684
Units: Undefined
Type: ColorSeparation
Endianess: Undefined
Colorspace: CMYK
Depth: 8-bit
Doing a convert.exe "C:\test.eps" -alpha transparent -clip -alpha opaque "C:\foo.png" returns the full size result. Doing the same via C# returns the small version.
Is there any way to get the full file instead of the preview?
ImageMagick.MagickImage img = new ImageMagick.MagickImage("test.eps");
returns an MagickImage object with these properties: Ept 212x233 8-bit CMYK 193.05kB
identify.exe "C:\test.eps" -verbose returns
Format: EPT (Encapsulated PostScript with TIFF preview)
Class: DirectClass
Geometry: 895x984+0+0
Base geometry: 898x988
Resolution: 304x304
Print size: 2.94408x3.23684
Units: Undefined
Type: ColorSeparation
Endianess: Undefined
Colorspace: CMYK
Depth: 8-bit
Doing a convert.exe "C:\test.eps" -alpha transparent -clip -alpha opaque "C:\foo.png" returns the full size result. Doing the same via C# returns the small version.
Is there any way to get the full file instead of the preview?