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
19
votes
4 answers

Page break when HTML to PDF with AbcPdf

I'm trying to create a report in PDF with abcPdf. Everything works but I would like to add a page number and margin at the bottom of each page as well as avoid cuts in the middle of a row as you can see in the picture: var theDoc = new Doc {…
Remo H. Jansen
  • 23,172
  • 11
  • 70
  • 93
14
votes
4 answers

Access to the registry key is denied (ABCPdf)

I am trying out ABCPdf 8.1 and when using the AddImageUrl(...) method I get the following error: Access to the registry key 'HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\FeatureControl' is denied. I have looked in the registry and…
Peuge
  • 1,461
  • 5
  • 20
  • 37
11
votes
2 answers

Has anyone been able to get ABCPDF (HTML Conversion) working on azure websites

Webforms Page Code behind XSettings.InstallRedistributionLicense("REDACTED"); var theDoc = new Doc(); theDoc.HtmlOptions.Engine = EngineType.Gecko; theDoc.Rect.Inset(72, 144); theDoc.Page = theDoc.AddPage(); …
MarkKGreenway
  • 8,494
  • 5
  • 34
  • 53
10
votes
5 answers

ABCPdf - Unable to render HTML. Unable to load page

I'm using ABCPdf to convert HTML to a PDF. I'm using the method: AddImageUrl() This works fine in Dev and UAT, but on Production I continuously get the message: Unable to render HTML. Unable to load page Anyone see this before? Need more…
Ev.
  • 7,109
  • 14
  • 53
  • 87
10
votes
9 answers

Extra blank page when converting HTML to PDF using abcPDF

I have an HTML report, with each print page contained by a
. The page class is defined as width: 180mm; height: 250mm; page-break-after: always; background-position: centre top; background-image:…
ProfK
  • 49,207
  • 121
  • 399
  • 775
9
votes
4 answers

ABCPDF6 issue: "HTML render is blank" but web page output is fine

Like the title says, we are using ABCPdf6 to render PDFs from XSLT. Everything was working fine, but now we are getting an error that states "HTML render is blank". Using a browser (tested on IE/Firefox/Chrome) I am able to browse to the generated…
Wayne Molina
  • 19,158
  • 26
  • 98
  • 163
8
votes
3 answers

3rd Party assembly slow to load

I have a command-line process that creates a PDF file from an HTML file using ABCpdf. I'm trying to upgrade from v5 (very old, no longer supported) to v8 but after installing ABCpdf 8 and updating my application to use the new DLL, I've noticed…
AlphaKilo
  • 180
  • 3
  • 11
8
votes
9 answers

Is it possible to modify PDF Form Field Names?

Here's the situation. I have a PDF with automatically generated pdf form field names. The problem is that these names are not very user friendly. They look something like : topmostSubform[0].Page1[0].Website_Address[0] I want to be able to change…
ncyankee
  • 1,248
  • 3
  • 19
  • 27
8
votes
3 answers

ABCpdf converting html anchors to jump to another page in the same PDF

I'm dynamically generating a PDF using ABCpdf which contains a table of contents that would link to other pages within the same PDF. The problem is that the path of the anchor tags in the HTML get changed to an absolute path to a temporary file. For…
Aaron
  • 316
  • 2
  • 8
8
votes
2 answers

Rotativa, ABCPdf and EO.Pdf don't work in Azure WEBSITES and I don't want to upgrade to Azure "Cloudapp"

Given the circunstances (take them as a fact): 1) Rotativa PDF (https://github.com/webgio/Rotativa) uses an exe for creating PDFs, so it doesn't work on azure websites (no permission to execute that exe) 2) ABCPdf has the same problem 3) EO.Pdf has…
sports
  • 7,851
  • 14
  • 72
  • 129
8
votes
5 answers

PDF Report generation

EDIT : I completed this project using ABCpdf. For anyone interested, I love this product and their support is A+. Everything I listed as a 'Con' for the HTML -> PDF solution was easily doable in ABCpdf. I've been charged with creating a data driven…
IniTech
  • 781
  • 7
  • 20
8
votes
2 answers

ABCpdf doesn't render images in an web application under IIS6

I'm trying to render a web page that contains images into a pdf document using ABCpdf. This is done from a web application. When I run the application on my development machine in IIS5, everything is fine. When I deploy the application on IIS6, the…
Paul
  • 1,224
  • 2
  • 14
  • 31
7
votes
2 answers

ABCPdf add document javascript

Is it possible to add document JavaScripts to a generated PDF using ABCPdf?
andr111
  • 2,982
  • 11
  • 35
  • 45
6
votes
2 answers

abcPDF 7 converting HTML to PDF but only getting the first page converted

I'm currently using abcPDF 7 to convert HTML to PDF. This is done via an ASPX page where I override the Render method. Doc theDoc = new Doc(); theDoc.SetInfo(0, "License", m_License ); theDoc.HtmlOptions.Paged = true; theDoc.HtmlOptions.Timeout =…
Alexandre Brisebois
  • 6,599
  • 12
  • 50
  • 69
6
votes
1 answer

Can iTextSharp rasterize/export to JPEG or other image format?

I need to be able to export PDF's that I am creating to JPEG, so that users can have a screenshot/thumbnail of the end product, which is faster than opening the whole PDF. I am running this on an ASP.NET website running in Medium Trust in the…
John B
  • 20,062
  • 35
  • 120
  • 170
1
2 3
22 23