New Post: Null reference at StartProcessing method on remote servce
Hello, I am using this Ghostscript to convert pdf to png, the code almost identical as first method in this sample . It works perfectly on my local machine, but it failed when I deploy it to the...
View ArticleNew Post: Null reference at StartProcessing method on remote servce
Hi Andrew, Can you please let me know if GhostscriptProcessor sample works on windows azure for you? Meanwhile i will implement better exception handling for the next release. Cheers, Josip
View ArticleNew Post: Null reference at StartProcessing method on remote server [windows...
Hi Josip, Thank you for the reply. What I eventually did is wrote very simple console app that works on windows azure: static void Main(string[] args) { var pathToPdfFile = args[0]; var outputPath =...
View ArticleNew Post: postscript to file only
Does anyone have a sample of code that simply creates a pdf file from a ps file without displaying it?
View ArticleNew Post: postscript to file only
there is a very inexpensive tool for creating pdf files form postscript files:http://www.wizards.de/~frank/pstill.html
View ArticleNew Post: postscript to file only
Hi, Take a look at this sample: using Ghostscript.NET.Processor; List<string> switches = new List<string>(); switches.Add("-empty"); switches.Add("-dQUIET"); switches.Add("-dSAFER");...
View ArticleNew Post: open PDF from Memorystream?
Hi! Is this possibility already available? (+1 for this) Thx.
View ArticleNew Post: open PDF from Memorystream?
Hi all, I did a little research, and the thing is that the PDF language, unlike the PostScript language, inherently requires random access to the file. If you provide PDF directly to Standard Input or...
View ArticleSource code checked in, #28382
Fixed GhostscriptPipedOutput.Data property get accesor in order to prevent a race condition. (thanks to "Marc Klenotic"). Added GhostscriptPipedOutput class as part of the Ghostscript.NET library....
View ArticleReleased: Ghostscript.NET v.1.1.2. (Dec 13, 2013)
v.1.1.2.fixed GhostscriptPipedOutput.Data property get accesor in order to prevent a race condition. (thanks to "Marc Klenotic").added GhostscriptPipedOutput class as part of the Ghostscript.NET...
View ArticleCreated Release: Ghostscript.NET v.1.1.2. (Dec 13, 2013)
v.1.1.2.fixed GhostscriptPipedOutput.Data property get accesor in order to prevent a race condition. (thanks to "Marc Klenotic").added GhostscriptPipedOutput class as part of the Ghostscript.NET...
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: Processing event of GhostscriptProcessor class
I am having difficulty subscribing to the Processing event of GhostscriptProcessor class. Any help would be greatly appreciated. Here's my code. Public Class PostscriptToPDFConverterInherits...
View ArticleNew Post: Processing event of GhostscriptProcessor class
Hi, Remove "switches.Add("-dQUIET")" as this switch suppresses routine information comments on standard output which Processing event relays on. Cheers, Josip
View ArticleNew Post: Processing event of GhostscriptProcessor class
Thanks for the prompt response, but it hasn't made any difference. I also tried commenting out all the switches below to see if they had any effect but still no event:-' switches.Add("-dQUIET") '...
View ArticleNew Post: Processing event of GhostscriptProcessor class
Hi, I did not saw earlier that you are converting PostScript to PDF. I spoke with the developers of the Ghostscript native library and they said that the thing is that a PDF file is a structured format...
View ArticleNew Post: System.NullReferenceException when loading GhostscriptRasterizer...
Hi, First - thanks for the great library, it works very well on my win7 machine. I use it to convert PDFs to images, and the load from memory feature is particularly handy as it enables me to thread my...
View ArticleNew Post: Processing event of GhostscriptProcessor class
Makes sense. However couldn't it still trigger the event and just populate the e.CurrentPage property whilst leaving the e.TotalPages property at zero or minus one or something, just so we can show...
View ArticleNew Post: GhostscriptPipedInput needed
I want to render a pdf-file to a png-file but i want to do it in memory only. The GhostscriptProcessor example uses the GhostscriptPipedOutput class. Are there any plans to implement a...
View Article