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

ABCpdf 11.3 - Unable to load the html

We are using ABCPdf 11.3 for one of our clients. We create HTML dynamically and then store it somewhere on the server. We call the AddImageUrl(filePath, False, 300, False) and it takes more than 2 minutes even for a single page. (filePath is…
Pankaj Rayal
  • 201
  • 2
  • 5
0
votes
3 answers

ABCPdf Microsoft XPS printer

I'm using ABCPdf get a pdf from a some HTML code. While I was developing everything worked great, now I install it in the server it is not working. It throw this exception WebSupergoo.ABCpdf8.Internal.PDFException: ABCpdf cannot detect any…
Diego
  • 16,436
  • 26
  • 84
  • 136
0
votes
1 answer

Pdf Signature Validation for Adobe Sign

I have a pdf file that is being signed by the Adobe Sign. However, i am not able to verify/validate the signature using the ABCPdf. I guess i am missing Root Certificate for that. How can i find root certificate for Adobe Sign. I have root…
Tanmay Parmar
  • 177
  • 1
  • 2
  • 14
0
votes
2 answers

ABCPDF.Net 8.0 not displaying the PDF

I am getting a blank PDF page when I print to the page. Here is the part of my code Dim theURL, theID Dim i Dim strSubject, strBody Dim strAttach Dim thedoc As New Doc theDoc.HtmlOptions.Engine=EngineType.Gecko 'Set minimum…
dogwasstar
  • 852
  • 3
  • 16
  • 31
0
votes
0 answers

Setting a pdf field value with AbcPdf 10 creates a placeholder with the wrong value

I am setting values of fields in an abcpdf 10 document, then returning it as a file to the browser. But it is creating some sort of placeholder, even though the true value is there. The first image is how the field looks originally with the wrong…
Guido
  • 3
  • 1
  • 3
0
votes
1 answer

ABCpdf - convert pdf stream to tif stream

My web page has a document viewer (canvas) where I will bind a multi-page tif file stream. There is a functionality to delete pages from the file, I am using the ABCpdf library to convert the tif file stream to a pdf stream and delete a particular…
Naveen
  • 43
  • 8
0
votes
1 answer

Unable to render HTML. Unable to access URL. COM error 800c0019 in FACILITY_INTERNET. The drive cannot locate a specific area or track on the disk

I am getting the above error message in production when trying to call the AddImageUrl section of ABCPdf (version 10). This started occurring yesterday just after midday my hosting provider assures me nothing has changed I am the only developer on…
0
votes
2 answers

JWT Bearer token in ABCchrome header

I am using ABCPdf 11 to convert html to pdf, my html page which needs to be converted required JWT token so that needs to be passed to ABCChrome so it can use the JWT token. I have tried the following but the auth still…
Umair
  • 4,864
  • 3
  • 28
  • 47
0
votes
1 answer

Adding bottom border on pdf form fields

I have to insert a bottom border on some fields in my pdf editable form. I would like to insert a row without to do it manually for each field: I don't know which solution can help me to do this (a program like acrobat or foxit, an external library…
Jack
  • 1
  • 2
0
votes
0 answers

Links are coming as normal text without the link functionality in PDF using ABCPDF Library

I am using AddImageHtml function of ABCPDF Library for generating the pages with HTML content. PDF generated text in anchor colour with underline but when I hover on it there is no link functionality. I have a table of content along with headings in…
nuthanmurari
  • 49
  • 1
  • 11
0
votes
1 answer

ABCpdf unicode character as?

I am using ABCPDF version 9.1.2.5 our process for creating PDF is like navigate URL in the background and get the full HTML as a string we are using AddImageHtml() method for creating a PDF, that would work perfectly with the English language but…
Chirag
  • 375
  • 4
  • 30
0
votes
0 answers

ABCpdf - How to implement CSS using AddHtml?

for (int i = 1; i <= theCount; i++) { if (!string.IsNullOrEmpty(footerHtml)) { theDoc.PageNumber = i; theDoc.AddText("Page " + i + " of " + theCount); …
0
votes
1 answer

ABCpdfCE7.dll locked by IIS

I have a website in ASP.Net that generates PDF with a 3rd party application called ABCPdf. ABCPdf consists of two dll : ABCpdf.dll and ABCpdfCE7.dll. ABCpdf.dll is a .NET wrapper for the unmanaged ABCpdfCE7.dll. As soon as a pdf is generated. the…
Alexandre Pepin
  • 1,816
  • 3
  • 20
  • 36
0
votes
2 answers

ABCPdf - Image not a suitable format

In the end, my goal is to send a raw image data from the front-end, then split that image into however many pages, and lastly send that pdf back to the front-end for download. But every time I use the theDoc.addImageFile(), it tells me that the…
Paul_LayLow
  • 133
  • 1
  • 13
0
votes
1 answer

WebSupergoo.ABCpdf8.Doc.Read() Function not loading Fields

I have been attempting to load, edit and save Adobe Acrobat PDF fields and I have been running into problems loading Adobe Acrobat Fields. Currently I am using C#/Windows Forms and WebSupergoo's ABCpdf library specfically the…