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.
After inspecting the information of individual fields attached to the doc.Form I see the expected font settings. However, once Stamp() is called and the PDF rendering completes the font size is not retained, although the font itself and some…
I try to add a the font "Open Sans" to my pdf file that I create with AbcPdf 7. But the font is not being used. Why is that?
Doc odfDoc = new Doc();
odfDoc.FontSize = 216;
string daFont = "Open Sans";
odfDoc.Font…
I'm trying to create a pdf table using ABC PDF. But, couldn't able to create PDFTable while declaring PDFTable its shows error.
Doc theDoc = new Doc();
// set up document
theDoc.FontSize = 16;
theDoc.Rect.Inset(20,…
I have searched everywhere but cannot find the proper property to set Copyright Notice and Copyright Status with ABCPdf.
Here is nothing
http://www.websupergoo.com/helppdf8net/default.html?page=source/4-examples/14-setprops.htm
While scanning Adobe…
I am trying to use ABCpdf (version 11) to create a pdf from an .aspx page that I am generating. I am following their sample code from https://www.websupergoo.com/helppdfnet/default.htm?page=source%2F5-abcpdf%2Fdoc%2F1-methods%2Fchainable.htm and…
I have created pdf from HTML page using Abc PDF now my problem is I want to print a table header on next page, but only if table data is display within a another page, if not display header on a different page, any one have idea about how we can do…
I'm creating a table with abcpdf. It should begin in the middle of the first page and break before the footer. Then it should restart at the beginning of the new page (it depends on the number of the rows).
Here is the code:
string theText =…
Adding a QR code as a bitmap to an ABCPDF document:
Doc pdf = new Doc();
pdf.Rendering.AntiAliasImages = false;
...
pdf.AddImageBitmap(bmp, true);
When rendered to a PDF file the image appears anti-aliased:
When printed direct to a printer the…
I'm creating a web page that will allow the user to download a report as a PDF using ABCpdf. But reading the documentation, the only options I see are by using doc.Save("test.pdf") (which saves the file on the server that is hosting the application)…
Is it possible to create a Rect text area with black font and no boarder or at least a white border?
Also, is it possible to add an image and not have it scale to fit the Rect?
I find ABCPDF is very capable. However, so far I had not managed to find a way to draw one PDF into another with rounded corners - until now. But, the approach I discovered depends on getting the correct PDF object id for the inserted PDF stream,…
I am trying to use abcPDF to fill form fields, and I am running into problems when selecting certain radio buttons. The form I am working on has several radio button fields, most of which I am able to set the following way:
Doc theDoc = new…
I'm generating PDFs from HTML (using ABCPdf and C#) and the files are coming out a reasonable size. However, I'm interested in any tips anyone has for making the PDFs as small as possible.
Anyone for any great ideas?
The HTML being rendered is…
The code below creates a new PDF with landscape orientation. It uses ABCPdf component.
static void Main(string[] args)
{
var filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "da.pdf");
var theDoc = new Doc();
…