Questions tagged [abcpdf]

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.

Useful resources on WebSupergoo's site:

342 questions
0
votes
0 answers

Increase the ABCpdf worker processes (ABCGecko)

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…
Guillaume Schuermans
  • 906
  • 2
  • 12
  • 28
0
votes
1 answer

ABC pdf, use specific proxy server for Gecko

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…
Jim
  • 14,952
  • 15
  • 80
  • 167
0
votes
1 answer

abc.pdf render google charts

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 <%@…
KristianMedK
  • 1,659
  • 6
  • 24
  • 52
0
votes
1 answer

ABCPDF 8 does not generate page when jsapi corechart is used

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,…
jlp
  • 9,800
  • 16
  • 53
  • 74
0
votes
1 answer

How to set Zoom level of generated pdf using abcpdf?

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…
user2750473
  • 61
  • 1
  • 4
0
votes
1 answer

ABCPDF error on trying to create pdf

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
0
votes
1 answer

ABCPDF XDoc.AddImageDoc returns current XDoc.Page object id

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…
Neaox
  • 1,933
  • 3
  • 18
  • 29
0
votes
1 answer

Can Typekit fonts be used by ABCPdf to Create PDFs?

We are not getting Typekit fonts which are used in our website for Creating PDFs using WebSuperGoo - ABCPdf. Is there are way to get this done?
Ashish
  • 21
  • 3
0
votes
3 answers

Supergo ABCPdf8 Error: Html Render is blank?

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 =…
Sohail Hameed
  • 978
  • 2
  • 9
  • 25
0
votes
1 answer

Why doesn't ABCPDF count a PDF's layers correctly?

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…
rsine
  • 91
  • 1
  • 7
0
votes
3 answers

ABCPDF 8 - How can I get the name of each layer in a PDF?

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"…
rsine
  • 91
  • 1
  • 7
0
votes
1 answer

ABCPDF 8 - How do I create a layered PDF

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. …
rsine
  • 91
  • 1
  • 7
0
votes
1 answer

How can I hide/unhide a subform using ABCPDF

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…
0
votes
1 answer

error when upgrading to version 9 of ABCpdf

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…
Ev.
  • 7,109
  • 14
  • 53
  • 87
0
votes
1 answer

Center Website On One Page with ABCPDF

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…
Mike Flynn
  • 22,342
  • 54
  • 182
  • 341