New Post: save pdf as image tiff ccitg4
well i got my answer few minutes later from Josip Hapjan on Ghostscript IRC. here is a helpfull...
View ArticleNew Post: convert prn into pdf
Make sure that the input file path and the output file path is correct. Also, the no. of pages to convert should be correct. Check that the read-write permissions are set correctly.
View ArticleNew Post: Ghostscript for extracting pdf to jpeg images
ghost script gives me this exception when im trying to extract pdf file into jpeg images . Ghostscript.NET.GhostscriptAPICallException: An error occured when call to 'gsapi_init_with_args' is made:...
View ArticleNew Post: Ghostscript for extracting pdf to jpeg images
Hi, Can I please see some code? This only tells me that there is something wrong with the parameters you are passing to the GhostscriptProcessor. Cheers, Josip
View ArticleNew Post: convert prn into pdf
Hi, This usually means there is something wrong with the parameters passed to the ghostscript. It would be useful if you could show some code. Cheers, Josip
View ArticleNew Post: A generic error occurred in GDI+
Hi, Can you please post the PDF you are trying to rasterize? Also, you could try to clone the rasterized image: (img.Clone() as Image).Save(....) I remember once this was the case that solved similar...
View ArticleNew Post: GhostscriptProcessor with pdfwrite fails to write pdf
Hi, Sorry for the delay. Yep, I should note somewhere that the first parameter is ignored by the Ghostscript library. I'm glad you figure that out. Cheers, Josip
View ArticleNew Post: Parameter is not valid.
Hi, Sorry for the delay. Can you please provide the PDF you are trying to convert to image? Cheers, Josip
View ArticleNew Post: Suppress all dialogs
Hi, Maybe this helps you out: http://superuser.com/questions/807027/how-to-print-with-ghostscript-in-silent-mode Cheers, Josip
View ArticleCommented Unassigned: out of memory issue [2247]
out of memory issue in getimages() while reading pdf of 800 pages.Comments: ** Comment from web user: josip ** hm... Ghostscript.NET doesn't have GetImages() function.. It would be good if you could...
View ArticleCommented Unassigned: Arithmetic operation resulted in an overflow [2243]
Hello,i get following exception while converting PDF to image...i use ghostscript 9.14 and ghostscript.net 1.1.8thanks..```An exception of type 'System.OverflowException'...
View ArticleNew Post: Ghostscript for extracting pdf to jpeg images
Hi, yes of course . PdfReader PDFReader = new PdfReader(InputPath); int PDFPageCount = PDFReader.NumberOfPages; GhostscriptJpegDevice dev = new GhostscriptJpegDevice(GhostscriptJpegDeviceType.Jpeg);...
View ArticleNew Post: Convert PostScript file to PDF
How can I convert a PostScript file to PDF using GhostScript.Net ? thanks
View ArticleCreated Unassigned: wrong DPI on Image from GetPage() [2253]
gsRasterizer.GetPage(300, 300, pageNumber) returns Image with both Horizontal and Vertical Resolution set to 96
View ArticleNew Post: Using GhostScript.net in MultiThreaded
Greetings, I used your RunMultipleInstancesSample ... very carefully. the "constructor 'fromMemory' option is set to true". Unfortunately only one PS file is being created. The start time of the...
View ArticleNew Post: Does Ghostscript.NET supports multiple page TIFFS?
Hey everyone! I'm trying to use Ghostscript.NET to perform PDF conversion to TIFF files and so far it's been working like a charm but I have one issue with it. I haven't been able to convert a multiple...
View ArticleNew Post: Using GhostScript.net in MultiThreaded
Hi, It would be good if you could post some code and sample files so I could see and test. Cheers, Josip
View ArticleNew Post: Convert PostScript file to PDF
Hi, Take a look at this example: https://github.com/jhabjan/Ghostscript.NET/blob/master/Ghostscript.NET.Samples/Samples/ProcessorSample.cs You can simply set the DEVICE value to "pdfwrite" ( as the one...
View ArticleCommented Unassigned: wrong DPI on Image from GetPage() [2253]
gsRasterizer.GetPage(300, 300, pageNumber) returns Image with both Horizontal and Vertical Resolution set to 96Comments: ** Comment from web user: josip ** That's true, but if you change 300, 300 to...
View Article