Updated Wiki: Documentation
Look for the installed Ghostscript libraries:List<GhostscriptVersionInfo> gsVersions = GhostscriptVersionInfo.GetInstalledVersions(GhostscriptLicense.GPL | GhostscriptLicense.AFPL); Using...
View ArticleUpdated Wiki: Documentation
Search for the installed Ghostscript libraries:List<GhostscriptVersionInfo> gsVersions = GhostscriptVersionInfo.GetInstalledVersions(GhostscriptLicense.GPL | GhostscriptLicense.AFPL); Using...
View ArticleCreated Unassigned: lots of White space problem in generated images [2148]
please find the source file and generated images.
View ArticleCommented Unassigned: lots of White space problem in generated images [2148]
Some output png files are incorrect please find the source file and generated images.Comments: ** Comment from web user: josip ** Hi,Attached you can find a pre-release of the Ghostscript.NET v.1.1.6...
View ArticleUpdated Wiki: Home
Ghostscript.NET (written in C#) is the most completedmanaged wrapper library around the Ghostscript library (32-bit & 64-bit), an interpreter for the PostScript language, PDF, related software and...
View ArticleUpdated Wiki: Documentation
Search for the installed Ghostscript libraries:List<GhostscriptVersionInfo> gsVersions = GhostscriptVersionInfo.GetInstalledVersions(GhostscriptLicense.GPL | GhostscriptLicense.AFPL); Using...
View ArticleUpdated Wiki: Home
Ghostscript.NET (written in C#) is the most completedmanaged wrapper library around the Ghostscript library (32-bit & 64-bit), an interpreter for the PostScript language, PDF, related software and...
View ArticleCommented Unassigned: lots of White space problem in generated images [2148]
Some output png files are incorrect please find the source file and generated images.Comments: ** Comment from web user: josip ** The release and the source code can be found here:...
View ArticleClosed Unassigned: lots of White space problem in generated images [2148]
Some output png files are incorrect please find the source file and generated images.
View ArticleReleased: Ghostscript.NET v.1.1.7. (Apr 29, 2014)
1.1.7.implemented Ghostscript native library verification with a friendly error message that will clear out the confusion when used native Ghostscript library is not compatibile with the running...
View ArticleCreated Release: Ghostscript.NET v.1.1.7. (Apr 29, 2014)
1.1.7.implemented Ghostscript native library verification with a friendly error message that will clear out the confusion when used native Ghostscript library is not compatibile with the running...
View ArticleUpdated Wiki: Home
Ghostscript.NET (written in C#) is the most completedmanaged wrapper library around the Ghostscript library (32-bit & 64-bit), an interpreter for the PostScript language, PDF, related software and...
View ArticleNew Post: _rasterizer.Open(ms) throws System.NullReferenceException in .net 4.5
Hi, my code looks like this:MemoryStream ms = new MemoryStream(bytes); if (_rasterizer != null) { _rasterizer.Dispose(); } _rasterizer = new GhostscriptRasterizer(); _rasterizer.Open(ms); Pretty much...
View ArticleNew Post: _rasterizer.Open(ms) throws System.NullReferenceException in .net 4.5
Hi, I did test Ghostscript.NET in .NET 4.0. and 4.5., both works for me (x86, x64). What Ghostscript.NET version do you use? Try to open MemoryStream this way:_rasterizer.Open(ms,...
View ArticleNew Post: _rasterizer.Open(ms) throws System.NullReferenceException in .net 4.5
Hmm, i'm using the newest version of Ghostscript.net. I tried your suggestions, and the error is coming from GhostscriptInterpreter.cs @ line 281.int rc_enc = _gs.gsapi_set_arg_encoding(_gs_instance,...
View ArticleNew Post: _rasterizer.Open(ms) throws System.NullReferenceException in .net 4.5
What version of native Ghostscript library do you have installed? If you have older version there is a chance that 'gsapi_set_arg_encoding' is not exposed. Current release is 9.14 which you can...
View ArticleNew Post: _rasterizer.Open(ms) throws System.NullReferenceException in .net 4.5
Hi Anders, I just found out that 'gsapi_set_arg_encoding' is introduced in Ghostscript 9.10. So, earlier versions are not compatible with Ghostscript.NET. Cheers, Josip
View ArticleNew Post: _rasterizer.Open(ms) throws System.NullReferenceException in .net 4.5
Hi Anders, This is fixed for the next release (Ghostscript.NET v.1.1.8). You can download latest source code which includes this bug fix from GitHub or you can apply changes to your existing source...
View ArticleNew Post: _rasterizer.Open(ms) throws System.NullReferenceException in .net 4.5
Hi Josip, I had Ghostscript 9.14 installed. I uninstalled it and tried the 32 bit version, and for some reason it worked. Should probably have tried that from the start. I'm going to test the latest...
View Article