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.
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…
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…
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…
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:
…
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…
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…
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.
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…
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…
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…
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…
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…
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…
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…