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
0
votes
1 answer

ABCPdf - Opening the PDF file

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…
Samjus
  • 603
  • 1
  • 5
  • 24
0
votes
1 answer

ABCPDF and ABCChrome width isnt automated like Gecko Engine

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…
Mike Flynn
  • 22,342
  • 54
  • 182
  • 341
0
votes
1 answer

Remove text and lines on specific Rect in a PDF using ABCPdf

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…
Sri
  • 9
  • 3
0
votes
1 answer

How to change the page size of one of the pages in a existing PDF using ABCPdf

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
Sri
  • 9
  • 3
0
votes
2 answers

ABCPDF10 throws PDFException

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…
0
votes
1 answer

How to use font awesome with ABCpdf 11

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…
Vinicius Rocha
  • 4,023
  • 4
  • 29
  • 38
0
votes
1 answer

Unable to find object at PDF cross-reference stream location. (abcpdf)

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,
Shiva D
  • 31
  • 6
0
votes
0 answers

ABCPdf or iTextSharp, get elements positions and sizes from an existing PDF file

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…
jibhey
  • 31
  • 7
0
votes
0 answers

AbcPdf in ASP.NET MVC using C# causes error

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 =…
0
votes
1 answer

Losing Aria/accessibility when converting from HTML to PDF

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…
Abigail
  • 165
  • 6
0
votes
0 answers

PDF content remains constant while generating pdf using ABCpdf.net

I am trying to generate dynamic pdf using ABCpdf.net in C# .net MVC web application. Doc theDoc = new Doc(); theDoc.Rect.Inset(72, 144); string url =…
winterishere
  • 350
  • 1
  • 5
  • 21
0
votes
1 answer

Getting error in ABCPdf.net: 'ABCpdf, Version=10.1.2.5, Culture=neutral, PublicKeyToken=a7a0b3f5184f2169' could not be loaded

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…
winterishere
  • 350
  • 1
  • 5
  • 21
0
votes
3 answers

How to add watermark like text to all pages in a pdf using ABCpdf?

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…
petstran
  • 101
  • 1
  • 7
0
votes
2 answers

ABCPDF.Net AddText Control hyphenation

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…
user1073694
  • 101
  • 1
  • 3
0
votes
0 answers

C# ABCPdf out of memory exception

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…
jbtamares
  • 778
  • 7
  • 26