Hi, after upgrading from 7.0.0.0009 to 7.0.0.0013 my EPS image becomes blank.
I use iTextSharp to generate a PDF, and until now I got a page with text and an Image.
This is my code for reading the image from disk (path = location to file):
This is the error message I get in my log file:
2015-04-24 12:43:19 - Warning: Error when loading vector image : Typography.GUI.vshost.exe: PostscriptDelegateFailed `The system cannot find the file specified.
' @ error/ps.c/ReadPSImage/951 (Typography.Core.TypographyHelper)
I'm using the x86 build of ImageMagick and I have GhostScript 9.15 (x86) installed on the system.
Any Ideas?
I use iTextSharp to generate a PDF, and until now I got a page with text and an Image.
This is my code for reading the image from disk (path = location to file):
var settings = new MagickReadSettings { Density = new PointD(density * 100, density * 100), ColorSpace = ColorSpace.CMYK };
using (var mi = new MagickImage(path, settings))
{
mi.ColorSpace = ColorSpace.GRAY;
mi.Format = MagickFormat.Png;
return Image.GetInstance(mi.ToByteArray());
}
When I downgrade to an earlier version it starts working again.This is the error message I get in my log file:
2015-04-24 12:43:19 - Warning: Error when loading vector image : Typography.GUI.vshost.exe: PostscriptDelegateFailed `The system cannot find the file specified.
' @ error/ps.c/ReadPSImage/951 (Typography.Core.TypographyHelper)
I'm using the x86 build of ImageMagick and I have GhostScript 9.15 (x86) installed on the system.
Any Ideas?