Tagged Questions

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.

learn more… | top users | synonyms

31
votes
15answers
6k views

Building PDF Files from HTML with C#

I would like to push some HTML into a library and have it spit out a PDF. Does anyone have experience using the following libraries (or others) to build PDF files in C#? Which have you found to be ...
6
votes
4answers
1k views

PDF Report generation

EDIT : I completed this project using ABCpdf. For anyone interested, I love this product and their support is A+. Everything I listed as a 'Con' for the HTML -> PDF solution was easily doable in ...
5
votes
1answer
2k views

Can iTextSharp rasterize/export to JPEG or other image format?

I need to be able to export PDF's that I am creating to JPEG, so that users can have a screenshot/thumbnail of the end product, which is faster than opening the whole PDF. I am running this on an ...
5
votes
4answers
2k views

Extra blank page when converting HTML to PDF using abcPDF

I have an HTML report, with each print page contained by a <div class="page">. The page class is defined as width: 180mm; height: 250mm; page-break-after: always; background-position: centre ...
5
votes
3answers
895 views

Convert HTML to PDF

In reference to an earlier post (http://stackoverflow.com/questions/1980890/pdf-report-generation) I have decided to use a solution similar to http://www.alistapart.com/articles/boom For those of ...
5
votes
2answers
1k views

ABCpdf doesn't render images in an web application under IIS6

I'm trying to render a web page that contains images into a pdf document using ABCpdf. This is done from a web application. When I run the application on my development machine in IIS5, everything is ...
4
votes
2answers
2k views

Tell abcPdf to scale the html to fit on a single pdf page

I am using abcPdf to convert an HTML report into a pdf file. The pdf has to be a single landscape A4 page. Do you know if there is any way to tell abcPdf to scale the HTML page to fit on a single ...
3
votes
2answers
87 views

ABCPDF Font Printing Layout - Machine Dependent

I am using ABCPDF to print a PDF file to a local printer via EMF file. I've based this very closely on ABC PDF's sample "ABCPDFView" project. My application worked fine on my Windows 7 and Windows XP ...
3
votes
1answer
70 views

Why did ABCPdf code start generating a Window Error 5

I have had some long standing code which has worked fine for quite some time. Recently it began generating the following error. 1st on a asp site and later on a .Net MVC site. Neither of which have ...
3
votes
1answer
517 views

AbcPdf - document not applying CSS

This may be more of a tech support issue, but I'm wondering if any other developers have come across this: I'm using Abcpdf in my ASP.NET code to generate a PDF from HTML. It works fine, but one ...
2
votes
0answers
16 views

ABCPdf: Error converting powerpoint

Does anybody knows, why ABCPdf gets an error, while converting an powerpoint-document to a pdf-document? Stacktrace: ----> System.Exception : Error opening document ...
2
votes
1answer
79 views

Can I prevent ABCpdf from mashing words together (e.g. mashingwordstogether) when convertering PDF to Text?

I'm using ABCpdf to extract the text content of some PDF files, in particular by calling Doc.GetText("Text"). (You call it in a loop, once per page.) This usually works well, but for some PDF files ...
2
votes
1answer
85 views

ABCPDF 6 Component Problem - Output Printing Small

We're using the ABCPDF Version 6 component to create PDF's from ASP .NET. The output works fine the majority of the time but will suddenly switch to small output i.e. the content get's condensed to ...
2
votes
3answers
127 views

Symbol font on ABCpdf

I'm using the ABCpdf.net component to convert HTML to PDF. Some of the HTML uses the Symbol font to display certain characters. Unfortunately, we are consuming the HTML from a third-party, and it ...
2
votes
0answers
41 views

ABCpdf convert text to image

I use ABCpdf to output pdf documents. The EAN-13 font is successfully used for barcode printing and I want to convert it to an image on the PDF document. Any ideas?
2
votes
3answers
347 views

Dynamic PDF from html that contains Javascript

I'm currently working on generating a PDF from a simple html page that contains a few charts that are generated in Javascript using Highcharts. We currently have ABCPdf installed which generates the ...
2
votes
3answers
1k views

ABCPdf - Unable to render HTML. Unable to load page

I'm using ABCPdf to convert HTML to a PDF. I'm using the method: AddImageUrl() This works fine in Dev and UAT, but on Production I continuously get the message: Unable to render HTML. Unable to ...
2
votes
3answers
446 views

ABCPdf uses a lot of memory and generates huge files. Solution?

I have a system for creating a pdf book from users own images. The images are in high resolution and the pdf end up with around 70pages with pictures on most of them. When generating the pdf the in a ...
2
votes
2answers
773 views

Printing landscape html->pdf using abcPDF

I am trying to get a PDF generated by abcPDF from html output to print the first three pages in portrait and then switch the fourth page to landscape. I have been able to get the html to switch into ...
2
votes
2answers
777 views

download html file as pdf using abcpdf

How can I download an HTML file as a PDF using abcpdf in ASP.Net, C#?
2
votes
1answer
175 views

ABC PDF - create 256 color images

I am using ABCpdf7 to create pdf documents on the fly - Here is something that I do not understand. When I create the pdf document from a url - the images in the pdf document seems to be 256 colors. ...
2
votes
2answers
723 views

ABCpdf copying document properties

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 ...
2
votes
2answers
5k views

abcPDF 7 converting HTML to PDF but only getting the first page converted

I'm currently using abcPDF 7 to convert HTML to PDF. This is done via an ASPX page where I override the Render method. Doc theDoc = new Doc(); theDoc.SetInfo(0, "License", m_License ); ...
2
votes
3answers
3k views

Every now and then, ABCpdf runs out of memory

The project I'm on is using a 3rd party component to build dynamic PDFs in a VB.Net web system called ABCpdf.Net. (not a terrible tool, but not a great one either.) Every now and then, for reasons I ...
1
vote
0answers
43 views

ABCpdf 5 Problems with encoding (special characters)

I am using ABCpdf Version 5 in order to render some html-pages into PDFs. I basically use HttpServerUtility.Execute() - Method in order to retrieve the html for the pdf: System.IO.StringWriter ...
1
vote
1answer
49 views

ABCPDF not rendering links

I am using the AddImageUrl function of the ABCPDF library and getting the pages to render fine as PDFs. But I am having a problem where the links (a tags) are not getting rendered in the PDF links but ...
1
vote
4answers
66 views

ABCPDF - calculate space required for text before drawing it to the PDF page

I'm hoping to tell if a piece of text is going to fit at the bottom of a page before I draw it on the page and check its y position. Does anyone know if this is possible with ABCPDF?
1
vote
2answers
46 views

How can I download a flash screen as pdf using abcpdf.net?

I have a flash calendar from which I want to download the current screen of flash as pdf, using abcpdf.net
1
vote
1answer
195 views

Generate PDF from a page with highcharts on it with abcpdf

We use ABCPDF to convert a HTMl page to a PDF. Everything works fine, except the charts generated with highcharts.The usescript tag is set to true, but the area where the chars is rendered stays ...
1
vote
1answer
332 views

ASP.NET MVC 3 get HTML from viewmodel

I have a Controller with a method like this: public ActionResult Index() { CustomerInfoViewModel viewModel = CustomerInfoModel.Load(); return View("Report", viewModel); } Now I'd like to ...
1
vote
1answer
118 views

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 ...
1
vote
1answer
116 views

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.?
1
vote
1answer
133 views

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 ...
1
vote
2answers
147 views

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 ...
1
vote
2answers
384 views

ABCPDF Alter image compression when carrying out doc.AddImageUrl

Using ABCPDF, currently generating pdf's with 1mb files. When we alter the pdf in acrobat pro, and simply change the image quality this drops the size to 100K. I have looked at the documentation for ...
1
vote
1answer
167 views

Tables truncated with AbcPdf

I'm using the AbcPdf library to transform an aspx page to a pdf object. I have achieved my goal, but I have a problem. The data in the aspx page is a set of Tables, and they are dynamic, I mean, it ...
1
vote
1answer
166 views

Getting the title, author, etc. of a PDF using ABCpdf

I am using ABCpdf, and simply cannot obtain the title or author of a document programmatically. Cannot seem to find any good examples on WebSupergoo's site! Must be a simple issue. Doc d = new ...
1
vote
1answer
840 views

Abcpdf throwing System.ExecutionEngineException

I have the binary for several pdf files stored in a collection of Byte arrays. My goal is to concatenate them into a single .pdf file using abcpdf, then stream that newly created file to the Response ...
1
vote
2answers
1k views

ABCpdf converting html anchors to jump to another page in the same PDF

I'm dynamically generating a PDF using ABCpdf which contains a table of contents that would link to other pages within the same PDF. The problem is that the path of the anchor tags in the HTML get ...
1
vote
1answer
1k views

Save HTML to Pdf ABCPdf 4

I'm using following code to save html to pdf file. But it fails to compile at if (!theDoc.Chainable(theID)). I do have using WebSupergoo.ABCpdf4; added at the begining of the code. Is this version ...
1
vote
2answers
3k views

C#: byte array in xml CData

I have a WCF service that is returning a block of xml. One element is a CData[] section. My application reads an HTML file out of the database and converts it to a PDF byte[] array using ABCPDF. ...
0
votes
0answers
12 views

ABCPDF not rendering images

I am using ABCPDF version 8 on IIS 6. I am having problems with rendering images in the PDF. The images were getting rendered in the beginning but all of a sudden in the last week, the same code has ...
0
votes
1answer
31 views

Access to the registry key is denied (ABCPdf)

I am trying out ABCPdf 8.1 and when using the AddImageUrl(...) method I get the following error: Access to the registry key 'HKEY_CURRENT_USER\Software\Microsoft\Internet ...
0
votes
1answer
55 views

Creating radio button through abcpdf

I'm trying to add a radio button to a pdf page I'm rendering through abcpdf. I'm looking at the documentation for abcpdf and it specifies that I use the following code Doc theDoc = new Doc(); ...
0
votes
1answer
181 views

Windows Forms WebBrowser control: DocumentText vs Document.Body.OuterHtml

I am trying to obtain html from the WebBrowser control, but it must include the value attributes of input elements on the page as well. If I use webBrowser.DocumentText, I get the full HTML of the ...
0
votes
1answer
116 views

ABCPDF.NET not rendering image

I am using ABCPDF.net to generate my PDFs from HTML files. There are 3 images on the HTML page which; of which 2 images are generated but the third is one is not on the PDF. I have tried to move the ...
0
votes
1answer
460 views

ABCPDF6 issue: “HTML render is blank” but web page output is fine

Like the title says, we are using ABCPdf6 to render PDFs from XSLT. Everything was working fine, but now we are getting an error that states "HTML render is blank". Using a browser (tested on ...
0
votes
1answer
237 views

Attempted to read or write protected memory. exception in Websupergoo ABCPDF7 on dispose

I get randomly (on the live environment its like once every 2 weeks with a very active and hard working windows service, it resizes about 50000+ images per day) AccessViolationException: Attempted to ...
0
votes
1answer
192 views

Manually inserting page breaks using abcPDF

What's the easiest way to do this? I've done some research and came up with the <div style="page-break-before:always">&nbsp;</div> to put in the CSS but I'm not sure how to do ...
0
votes
4answers
164 views

How to Convert my ASP.NET Page to PDF?

I have the following acceptance criteria for creating a pdf file from my asp.net page which contains nested RadGrid controls: The current view of the page should be converted to PDF which means that ...

1 2