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.
Doc theDoc = new Doc();
theDoc.FontSize = 96;
theDoc.AddText("Hello World");
theDoc.Save(Server.MapPath("simple.pdf"));
theDoc.Clear();
I understand that this creates the pdf and saves it. When I click on the link I have created for this I want the…
I have been using Gecko engine for ABCPDF reports where the BrowserWidth is set to 0 where it will take the actual browser width of the page. I would like to switch to ABCChrome but the width works a little differently. Right now if you dont set a…
I have an existing PDF which has couple of lines of text and horizontal line in the top of every page. like full file name, date time, and a horizontal line below that. The positions, height and width are same on all pages/pdf files.
I would like to…
I have an existing PDF. The page size of the entire document is A4. If I would like to modify the page size of the 2nd page to Legal then How can I achieve that using ABCPdf?
Thanks
I am using abcpdf10 to read pdf files. Whenever my code encounters an empty pdf file (0kb), document.Read(pdfPath) throws exception.
using (var document = new Doc())
{
document.Read(pdfPath);
}
If my code encounters empty file I need to ignore…
webSupergood recently announced that with ABCpdf 11 they are now officially supporting Font-Awesome. Is there any example on how to use that?
As of today, the link at the feature list page only redirects to the Font Awesome page.
I would merely like…
I am getting below error when processing the single page pdf.
May i know why i am getting this error
Doc theSrc = new Doc();
theSrc.Read(e.FullPath); on this line
Unable to find object at PDF cross-reference stream location.
Thanks,
I try to develop an exe tu compare to pdf files. i need to get all differences between a master pdf and a generated one, like images or texts position and size, text content, and as much data as possibles.
here is my test with iTextSharp to try to…
I want to convert HTML to PDF in ASP.NET MVC. I am using Abcpdf converter. I have tried following code but I get an error
Unable to render HTML. Unable to load page. (HTTP 403)
Every time I run this line causes the error
theID =…
I am using ABCpdf to generate a collection of PDFs from HTML markup, and am struggling with making it fully accessible.
The HTML pages include several graphs which are created by CSS, and which are completely ignored by the screenreader.
I have…
I am trying to generate PDFs using ABCPdf.net on c# .net MVC web application. While loading the solution, I am getting the below error:
Could not load file or assembly 'ABCpdf, Version=10.1.2.5,
Culture=neutral, PublicKeyToken=a7a0b3f5184f2169' or…
I'm using ABCpdf7 to create a pdf where I in some instances want to add a "watermark like" text to be shown on all pages in the document. Whenever I make the text unique on all pages, it works as expected, but if it's the same text on all pages, it…
I'm using ABCPDF.net for generating PDF Pages. We've got a problem with the hyphenation system.
For example if we add a text with long words using
doc.AddText("This is a Verylongwordwhichdoesntfit");
and the Rect is too small, we get:
this is a…
I have a problem regarding with the use of abcpdf which errors when adding around 70 mb file size of html (this size is not static it may increase or decrease, however, if file size or the data inside the html is small, it will work) using the…