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
2
votes
3 answers

Detect orientation of every page in a PDF using ABCPDF

Is there a way to detect the orientation of every page in a pdf file? I am creating an application that adds watermarks(text) to pdf files. These files can have pages portrait, landscape or a combination of both. Using the doc.MediaBox property, I…
jerjer
  • 8,694
  • 30
  • 36
2
votes
2 answers

ABCpdf attach Doc to email

I've used ABDpdf to render a pdf and stream it to the browser, but I'm wondering if I can attach the rendered pdf to an email. Has anyone ever done that? I'm hoping there is a way that doesn't require me to save the pdf to a temp directory then…
2
votes
2 answers

ABCpdf copying document properties

I'm trying to copy a PDF using ABCpdf's AddImageDoc. Doesn't look like any document properties (like "/Rotate") get copied along. It looks like I have to copy these properties manually from old document to new using SetInfo method. Like so: foreach…
dev.e.loper
  • 35,446
  • 76
  • 161
  • 247
2
votes
1 answer

ABCpdf accessing pages within a login area

In my website I am using ABCpdf to generate a pdf dynamically from HTML. I have two conditions: User is logged in, is shown page one and drawn page one as pdf User is not logged in shown page two and drawn page two as pdf My code is like this: …
None
  • 5,582
  • 21
  • 85
  • 170
2
votes
2 answers

abcpdf HttpAdditionalHeaders cookies

Hi I'm trying to add cookies to the http headers when generating a pdf file with abcpdf. What I have done so far is based on the…
Remo H. Jansen
  • 23,172
  • 11
  • 70
  • 93
2
votes
0 answers

abcpdf7 generated pdf looks bad on mobile - wet paint effect

I'm using abcpdf7 together with my .NET application. I use it to automaticly generate PDFs from prepared HTML code. PDFs look great on pc pdf viewers, but they look really bad, when previewing on mobile phones, e.g. on Android or iOS. The problem is…
Tomasz
  • 33
  • 4
2
votes
1 answer

ABCPDF Calculation of header size and position.

The problem is a header file, which I have to include on each page of the pdf file generated by abcpdf. The header file contains more than one image file and several lines of text, which varies from case to case. The problem is that I do not…
Alex Cosic
  • 21
  • 1
  • 2
2
votes
3 answers

Add page numbers to a Pdf document

How can I extend the content of a pdf to next page if content of pdf does not all fit on a single page. Currently I am creating Pdf as A4. Also how can I specify the numbers of pages e.g. Page 1 of 12 in bottom right.
Narasappa
  • 31
  • 1
  • 3
2
votes
0 answers

Change "document reference" to "hyperlink" in a PDF file

How can I change a reference (link to anohter PDF file) to a hyperlink and set its URI for e.g. to google.com? A hyperlink and a reference seems to be different objects or rather classes in the iTextSharp library. So there must be some type…
Aykut Çevik
  • 2,060
  • 3
  • 20
  • 27
2
votes
3 answers

(ABCPdf) Failed to add HTML: RPC to Gecko engine process failed

I have an MVC .NET application that uses ABCPdf to generate and serve PDF files. It runs fine on several of our development machines, but there is a machine that cannot run it. The machine is a Windows Server 2003 - 32 bit. We first attempted to bin…
Joel
  • 1,033
  • 2
  • 12
  • 23
2
votes
1 answer

Why can't ABCpdf .Net see the fields in my pdf when created with Adobe LiveCycle?

I am working on a PDF Filler application that will populate fields in a PDF with values from a web form. My code works fine for older PDFs that I have but new ones that have been created with Adobe LiveCycle Designer don't seem to be able to see…
brookesmash
  • 95
  • 2
  • 11
2
votes
2 answers

Convert HTML to PDF with ABCpdf

I am creating an web application which uses ABCpdf to convert an html page to pdf. The html page uses javascript for some dynamic parts.. I have already tried setting the UseScript bool to true as follows : theDoc.HtmlOptions.UseScript = true; It…
Bilal Fazlani
  • 6,727
  • 9
  • 44
  • 90
2
votes
3 answers

Letting the Javascript finish before rendering pdf in ABC pdf

I'm trying to make a pdf of a web page that is displaying locations on Google Maps. The only problem is that the Javascript isn't quite completing by the time that ABCpdf renders the pdf. It's incomplete. How can I make ABDpdf wait until the…
broguyman
  • 1,386
  • 4
  • 19
  • 36
1
vote
1 answer

ABCPDF links not working

We are using ABCPDF.Net version 5 to create a PDF file from HTML. However, the links are not live except for those that appear as URLs in the HTML even when HtmlOptions.AddLinks is set to true. In fact, when it's set to true, the links render with a…
1
vote
1 answer

abcpdf gecko not rendering images

I'm attempting to make a PDF from a HTML document, and this document has images absolutely linked (ie. C:/somewhere/html.htm), but when I use abcpdf 8.1 AddImageUrl("file:\\"&absLocation,True,0,False) the resulting pdf doesn't have any images. Does…
PAULDAWG
  • 780
  • 5
  • 21