Tagged Questions

75
votes
15answers
26k views

What is a good PDF report generator tool for python?

What is a good tool for PDF report generation in Python? I've checked out ReportLab, but it seems to be awfully low-level for what I want to do. My current hunch is to call TeX on the command-line and ...
19
votes
11answers
24k views

Best pdf generator in PHP , mpdf or fpdf? [closed]

Which is th best pdf generator for php, i know some opensources libs mpdf and fpdf.. Thanx in advance
17
votes
7answers
6k views

Converting HTML to PDF (not PDF to HTML) using PHP

I am a PHP developer and in one of my projects, I need to convert some HTML documents (about 30 to 50 pages) into PDF documents. My search has turned up the following possible solutions. Among them ...
17
votes
7answers
14k views

Generate PDF from Rails

The Ruby On Rails Wiki lists a couple of libraries that facilitate PDF generation in Rails. I need to print out address labels (in letter format, thus 12-15 addresses per page) and cannot decide which ...
16
votes
4answers
5k views

html to pdf for a Django site

For my django powered site, I am looking for an easy solution to convert dynamic html pages (generated using django views and templates datas generated using GET forms) which also contains some graph ...
16
votes
10answers
3k views

Converting HTML files to PDF

I need to automatically generate a PDF file from an exisiting (X)HTML-document. The input files (reports) use a rather simple, table-based layout, so support for really fancy JavaScript/CSS stuff is ...
14
votes
5answers
14k views

Generating PDF files with Javascript

I'm trying to convert XML data into PDF files from a web page and I was hoping I could do this entirely within Javascript. I need to be able to draw text, images and simple shapes. I would love to be ...
12
votes
1answer
4k views

Best commercial HTML-to-PDF C# component [closed]

I have used the following PDF components: iTextSharp HtmlToPdf convert (http://www.html-to-pdf.net/) Syncfusion Essential PDF I like HtmlToPdf the most, but it cost me $550. I would have to ...
12
votes
5answers
5k views

Unicode in PDF

My program generates relatively simple PDF documents on request, but I'm having trouble with unicode characters, like kanji or odd math symbols. To write a normal string in PDF, you place it in ...
11
votes
3answers
583 views

Cannot create PDF document with 400+ pages on iOS

I am using the following pseudocode to generate a PDF document: CGContextRef context = CGPDFContextCreateWithURL(url, &rect, NULL); for (int i = 1; i <= N; i++) { NSAutoreleasePool *pool = ...
10
votes
3answers
2k views

How to generate PDF from markdown using pure ruby

I'm currently using Kramdown to generate HTML from Markdown in Ruby. I know that I can generate a latex file using kramdown and convert it to pdf usaing a command line utility. But I want a pure ruby ...
10
votes
7answers
8k views

How to programmatically convert SVG to PDF on Windows?

I'm looking to programmatically convert SVG to PDF documents on a server. What are my options for doing that on Windows? I've seen links to Inkscape, Batik, and svg2pdf, but I'm not sure if these can ...
9
votes
10answers
932 views

Creating something printable in C#

Just wondering if anyone could tell me of a simple way to create files for printing? At the moment I'm just scripting HTML, but I'm wondering if there isn't some easier way of doing it that would give ...
9
votes
4answers
4k views

django - pisa : adding images to PDF output

I'm using a standard example from the web (http://www.20seven.org/journal/2008/11/pdf-generation-with-pisa-in-django.html) to convert a django view / template into a PDF. The mechanics work ...
8
votes
7answers
2k views

How to edit a pdf in the browser and save it to the server

Here are the requirements, the users needs to be able to view uploaded PDFs in the browser. They need to be able to add notes to the PDF and save the updated PDF to the server without having to save ...
8
votes
9answers
5k views

Silent Printing of PDF From Within Java

We are looking into silent printing of PDF documents from within Java. The printing will be invoked from the desktop and not through a browser so we cannot use JavaScript. PDF Renderer is an ...
8
votes
7answers
13k views

How can I combine two PDF pages show up on the same page?

I am looking for a free tool that allows re-arranging pages of a PDF document and combining multiple pages per sheet. The first part (re-arranging) is easily solved by many tools (I use PyPDF). The ...
7
votes
7answers
410 views

.NET library for typesetting documents (PDF or similar)?

EDIT: Better explanation: Before setting a bounty for this question I want to state clearer what I need: I need .NET library for generating printable documents. Users should be able to print exactly ...
7
votes
3answers
739 views

Java PDF manipulation and rendering

I am hoping for this question to become a comprehensive guide to PDF manipulation and rendering in Java. I have a fairly comprehensive implementation by stitching together multiple open source ...
7
votes
8answers
7k views

Calling wkhtmltopdf to generate PDF from HTML

I'm attempting to create a PDF file from an HTML file. After looking around a little I've found: wkhtmltopdf to be perfect. I need to call this .exe from the ASP.NET server. I've attempted: ...
7
votes
8answers
9k views

Converting HTML to PDF using PHP? [closed]

Possible Duplicate: Convert HTML + CSS to PDF with PHP? Is it possible to convert a HTML page to PDF using PHP, and if so, how can it be done? Specifically, the page is an invoice ...
7
votes
12answers
3k views

How best to write documentation targeting both HTML and PDF?

Latex-to-html converters I've seen in the past have been pretty awful. Editing raw html is no fun and doesn't seem to translate well to the printed page. How do others solve this problem? Links to ...
7
votes
4answers
9k views

WPF to PDF

I have a WPF application and I want to be able to save the output of the application to a PDF document, the item I want to save can be a Visual a Drawing or a FixedDocument (I can create it as any of ...
6
votes
4answers
845 views

Converting html to pdf in php?

I know that there is a lot of posts about this problem.But can someone help me to setup this http://www.rustyparts.com/pdf.php script to work on my localhost.I just spent all week on this problem.I ...
6
votes
2answers
954 views

How can I generate a PDF index from pdfLaTeX?

I often generate reports from pdfLaTeX using TeXworks, and would like to generate a document index, which will appear in the sidebar of a PDF viewer, (e.g. evince, Adobe Reader). Are there any ...
6
votes
3answers
254 views

Multiple XMLs to PDF: best approach

I have some XML files which are used to generate my webpages, however I need to be able to allow the user to select a number of pages then combine them into one PDF. This PDF needs to have different ...
6
votes
3answers
1k views

Is it possible to convert a Microsoft Word document to PDF with ColdFusion?

The above question says it all. I know you can create a PDF from an image file or HTML in ColdFusion 8 using CFPDF, but I'm wondering if it's possible to create a PDF from a MS Word document directly ...
6
votes
4answers
1k views

Are there any credible alternatives to iText for programmatic PDF generation within Java?

Anyone come across anything else that is similar or close in quality/features? Cheers.
6
votes
2answers
338 views

Does a library exist to remove passwords from PDFs programmatically?

Does a library exist that will remove "owner" passwords from PDF documents so that the text can then be programmatically extracted from them? Something like PDF Technologies' Password Recovery tool, ...
6
votes
7answers
611 views

What is the best way to generate pdf from c#?

We are looking at creating a custom PDF document for users using C#. The windows app will ask certain questions to the user. Based on the questionnaire responses certain sections are removed / added. ...
6
votes
11answers
5k views

Are there any Java PDF creation alternatives to iText?

I am trying to render about 100,000 - 80 column records through FOP and it tanks pretty much everytime (OutOfMemoryException). I know iText could handle that kind of load but I can't use it because of ...
6
votes
2answers
11k views

ImageMagick/Imagick convert PDF to JPG using native PHP API

I’m attempting to convert PDF files into PNGs. It works great from the command line (I do have GhostScript 8.64 installed). But from PHP I’m having a problem: code: $im = new Imagick($pdf_file); // ...
6
votes
9answers
3k views

Delphi PDF generation

We're using Fast Reports to create reports but we're not very happy with the quality of the PDFs it creates. I know we can plug in other PDF components instead of the one that comes with FastReports ...
6
votes
4answers
5k views

Drop caps in pdfLaTeX

I want to find a way to produce drop caps (large initial letters several lines high) in pdfLaTeX. I know that there is a dropping package which works well when used with latex + dvips. However, when ...
6
votes
13answers
8k views

XML to DOC to PDF

what is the easiest(and fastest) way to perform this kind of transformation: "Data in XML" to "Some MS Word 2003 Supported format" to PDF using Java? My first guess was to fill the template with XML ...
6
votes
10answers
14k views

Converting MS Word Documents to PDF in ASP.NET

Similar questions have been asked, but nothing exactly like mine, so here goes. We have a collection of Microsoft Word documents on an ASP.NET web server with merge fields whose values are filled in ...
6
votes
7answers
3k views

Generating a PDF document based on a Microsoft Word Template

I need to take a Word document that is a template of sorts...collect user input to populate specific fields in that template..then generate a PDF file that includes the completed template as well as a ...
5
votes
4answers
364 views

FPDF.php is ~20 times smaller filesize than TCPDF.php? Why?

I know there have been a lot of posts about these two but figured I'd address a glaring question I have. A designer of ours recently sent me a few files with TCPDF already tied in because a friend of ...
5
votes
2answers
727 views

how to use iTextSharp?

So, I need a PDF generator for my ASP.NET application. I downloaded iTextSharp because it seems to be the most popular free one. But after searching the internet I am not really finding the ...
5
votes
3answers
259 views

Generate PDF from set of JPEGs

I have a set of JPEG's on my server all the same size. Can I convert this into a PDF file server side?
5
votes
1answer
386 views

ReportLab: How to align a textobject?

I have the following ReportLab code: t = c.beginText() t.setFont('Arial', 25) t.setCharSpace(3) t.setTextOrigin(159,782) t.textLine("Some string") c.drawText(t) What I want ...
5
votes
3answers
783 views

is Flying Saucer project closed?

Someone know what happened with Flying Saucer project? https://xhtmlrenderer.dev.java.net site down and I can't get access to manuals :( UPD: I have solved problem. It's seems thay have problems ...
5
votes
3answers
5k views

Generate pdf from Rails 3 - what tool to choose?

I need to be able to render some views as PDFs from a Rails 3 project. I've never before used PDF generation techniques with ruby/rails, so I researched a few popular approaches such as Prawn and ...
5
votes
4answers
1k views

Best way or library to generate PDF format of invoices in Java

I am working on a project, one feature is to generate PDF format of invoices in Java. There seems to be many solutions, but I don't know which one is the best for invoices. Please advise, Thanks.
5
votes
5answers
2k views

Using “Microsoft Save as PDF” add-in programmatically without installing Word

The sample code in this article for creating a PDF from a Word doc works great if you have word installed on the machine. http://msdn.microsoft.com/en-us/library/bb412305.aspx I'm curious if it is ...
5
votes
2answers
348 views

How to embed an image in a PDF using cfpdfform

I'm dynamically generating a PDF with a few variables but also need to be able to embed an image on the PDF. Anyone have any experience doing this using ?
5
votes
4answers
593 views

Dynamic HTML to PDF

I need to be able to convert dynamic HTML (html that is rendered on page load by javascript) to a PDF. I know there are plenty of HTML to PDF converters but none of the ones I have found thus far cope ...
5
votes
6answers
3k views

Grails and pdf generation

any experiences creating pdfs programmatically in Grails using some of the numerous java libs available ? Snippets are welcomed ! Thanks
5
votes
2answers
2k views

sphinx (python) pdf generator

I use sphinx python documentation generator. Creating pdf documents are very easy and simple but.... i have one problem. All generated pdf documents have english words like "chapter", "release", ...
5
votes
3answers
916 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 ...

1 2 3 4 5 11