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
1
vote
1 answer

ABCPDF Stamp() does not honor font settings on fields

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…
Joshua Drake
  • 2,704
  • 3
  • 35
  • 54
1
vote
0 answers

how do I add font to abcpdf 7

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…
MTplus
  • 2,077
  • 4
  • 34
  • 51
1
vote
0 answers

ABCPDF error on trying to create pdftable

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,…
1
vote
2 answers

Topdown approch for abcpdf doc object

the default (x,y) axis for doc object in ABCpdf starts at bottom-left corner. is there any way to make it top-left corner.?
Ankith
  • 145
  • 2
  • 12
1
vote
1 answer

ABCPdf SetInfo Copyright Status and Notice?

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…
1
vote
1 answer

ABCpdf, ASP.net - Paged HTML with dynamically generated .aspx page

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…
WhatsInAName
  • 724
  • 2
  • 12
  • 32
1
vote
1 answer

Print a header on set page using Abc PDF

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…
user681488
  • 11
  • 3
1
vote
0 answers

Break a table before a footer and make it re-start in the new page from the top

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 =…
emploja
  • 11
  • 2
1
vote
1 answer

ABC PDF anti-aliasing images when asked not to

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…
user2729292
1
vote
1 answer

ABCpdf - Download PDF with .NET Core 2.1 - HttpContext/HttpResponse

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)…
Paul_LayLow
  • 133
  • 1
  • 13
1
vote
2 answers

How can I add a Rect without a border?

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?
Joe Smith
  • 53
  • 2
  • 6
1
vote
1 answer

Using ABCPDF draw another doc as an image with rounded corners

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,…
Vanquished Wombat
  • 9,075
  • 5
  • 28
  • 67
1
vote
1 answer

abcPDF eForm Radio Fields - Value Options Contain Special Characters

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…
cosinepenguin
  • 1,545
  • 1
  • 12
  • 21
1
vote
2 answers

Tips for making PDFs smaller (using ABCPdf7)

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…
Ev.
  • 7,109
  • 14
  • 53
  • 87
1
vote
1 answer

ABCPdf change orientation of a specific page

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(); …
CSS
  • 154
  • 1
  • 2
  • 12