ABCpdf is WebSupergoo's software component for generating and manipulating PDF documents dynamically on Windows based systems, supporting the Microsoft .NET Framework and ASP/COM.
ABCpdf can spawn 10 worker processes to generate PDFs. This can be changed setting the 'HtmlProcessPoolSize' registrykey. I tried setting it to 16, but only 10 processes spawn.
This setting should be configurable through configuration settings as…
Is it possible to configure which web proxy server and credentials the Gecko engine uses to convert HTML to PDF in ABC PDF.
I cannot find any option to set this up in the settings.
We are using the engine in a service and would prefer the proxy…
i'm trying to export charts created with googles api to pdf, using abcpdf.
i've tried the solution from these questions
answer1
answer2
but neither works, and i get nothing created from the javascript.
the page i'm trying to render as pdf is
<%@…
I am using ABCPDF 8 for .NET to generate PDF.
Doc theDoc = new Doc();
theDoc.HtmlOptions.Engine = EngineType.Gecko;
theDoc.HtmlOptions.UseScript = true;
theDoc.Rect.Inset(20, 20);
int theID = theDoc.AddImageHtml(html, true, 600,…
I am exporting my image into PDF using abcpdf. It works fine but the generated pdf default zoom level is not 100%,i.e. around 52.9%. Is there any way to set/define the default zoom level of pdf, so that when I open the pdf, the default zoom level…
I am using ABCPDF to generate PDF and I get the following error message when I call the AddImageUrl() method
any ideas? basically the application crashes and I am stuck with this. !
Any help gretaly appreciated.
Poornima
I am using ABCPDF for a project, I have no choice but to use an older version (ABCPDF 7) at this time.
When using Overridable Function AddImageDoc(doc As Doc, page As Integer, rect As XRect) As Integer the function is supposed to return the object…
Heloo ,
I am stuck in this error while generating Pdf from HTML using ABCPdf8
my code is
Dim PdfDocument As New WebSupergoo.ABCpdf8.Doc()
Dim PdfId As Integer
PdfDocument.Page = PdfDocument.AddPage()
PdfId =…
I have the below method that was supposed to return the number of layers in a PDF but it doesn't appear to work. When I pass the path to a PDF file containing two layers, the layer count property has a value of 1. I confirmed with two different…
I have a process that receives unlayered and layered PDF files. For the unlayered PDF files, I'll add a layer named "cut". For the layered PDF files, I need to check to see if there is already a layer named "cut" and if so, do not add the "cut"…
I need to use ABCPDF to create a layered PDF file. I've seen examples for watermarks but I need to have a PDF be the second layer. My code is below. When I run it, I only see one layer. What am I doing incorrectly?
Thank you.
…
I am currently in a situation where I have a sub form inside a page of a PDF Template, with a group of fields wrapped inside the sub form.
I am using Adobe Lifecycle designer ES2 to create my templates.
Is it possible using ABCPDF tool(ABCpdf .NET…
I've recently upgraded to ABCPdf version 9, and now get this error:
ABCpdf 32-bit core engine version 9102 is not compatible with ABCpdf .NET version 9.0.0.5.
Seems like there must be a rogue dll floating around. Any one know what that DLL might…
I have code that does a good job of centering html inside one page on abcpdf. This was provided to me from websupergoo company that created abcpdf. However, my application pool keeps shutting down, and I believe its a performance issue. I even…