Is there any update on the "An error occured when call to 'gsapi_new_instance' is made: -100" exception with GhostscriptRasterizer?
I have the following method in a Web service with the last statement (rasterizer.Open(ms);) throwing the abovementioned exception:
I am using Ghostscript.Net version 1.1.8.0.
I have the following method in a Web service with the last statement (rasterizer.Open(ms);) throwing the abovementioned exception:
public void Resterize(byte[] buffer)
{
MemoryStream ms = new MemoryStream(buffer);
lock(this)
{
GhostscriptRasterizer rasterizer = new GhostscriptRasterizer();
rasterizer.Open(ms);
....................................................
}
....................................................
....................................................
}
Occasionally the same statement would throw: "An error occured when call to 'gsapi_init_with_args' is made: -15" exception.I am using Ghostscript.Net version 1.1.8.0.