Created Release: Ghostscript.NET v.1.1.4. (Feb 14, 2014)
v.1.1.4.fixed problem with applying GraphicsAlphaBits and TextAlphaBits which improved antialiasing in GhostscriptViewer and GhostscriptRasterizer.fixed problem with output through main stderr callback...
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 ArticleCreated Unassigned: SystemFormatException if PDF Filename contains diacritics...
If the PDF file name contains diacritics e.g."Verträge.pdf" a format exception "Input string was not in a correct format." is thrown:at System.Number.StringToNumber(String str, NumberStyles options,...
View ArticleNew Post: Additional information: An error occured when call to...
I had the same issue in a winform app. The cause was I was reusing a single GhostscriptViewer instance to open multiple documents. Even creating a new instance for each pdf was throwing the exception...
View ArticleCommented Unassigned: SystemFormatException if PDF Filename contains...
If the PDF file name contains diacritics e.g."Verträge.pdf" a format exception "Input string was not in a correct format." is thrown:at System.Number.StringToNumber(String str, NumberStyles options,...
View ArticleCreated Unassigned: EPSCrop [2130]
I'm not able to activate -dEPSCrop with the rasterizer.It works with a custom switch in GhostscriptPngDevice but temporary saving to a file is a little bit slow.Any idea? Cropping to the BoundingBox is...
View ArticleNew Post: Stream instead of MemoryStream
I had to replace Open(MemoryStream) with the more general Stream type. There was only one additional change needed in WriteToTemporaryFile() Old: File.WriteAllBytes(path, stream.ToArray()); New: byte[]...
View ArticleNew Post: .NET 3.5
I had to change the code to work in .NET 3.5. Not a lot of work luckily. Any special reason why a higher version is requested?
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: 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: 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: 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: 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: Stream instead of MemoryStream
Hi, Thanks, I will implement this for the v.1.1.5 release. Cheers, Josip
View ArticleCommented Unassigned: EPSCrop [2130]
I'm not able to activate -dEPSCrop with the rasterizer.It works with a custom switch in GhostscriptPngDevice but temporary saving to a file is a little bit slow.Any idea? Cropping to the BoundingBox is...
View ArticleNew Post: Invert Image colors
Hi, I want to implement a function to can invert colors for readability on a small screen. I came across some code that works for me, but i don't know where to implement this the right way, so i can...
View ArticleNew Post: Invert Image colors
Hi, I would implement this in the 'DisplayPage' event handler. So, the complete source would look like this:namespace Ghostscript.NET.Viewer { public partial class FMain : Form { private...
View ArticleNew Post: Invert Image colors
Hi Josip, Thanks for helping me out. I was a little confused, but its working now. I noticed the DisplaySize event is called twice when loading a document, and DisplayUpdate can be called more than...
View ArticleNew Post: Error when trying to run a processor
My intention is to convert a PDF to PNG, GhostscriptReasterizer first tried using the class and it worked correctly, but I can not set the output parameters all I wanted. Then I took on the example of...
View ArticleNew Post: Error when trying to run a processor
Hi Alejandro, Try with this: private List<string> GetArgs() { List<string> args = new List<string>(); args.Add("-empty"); // this one will not be used but it must be here...
View Article