Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 able to do this entirely in the browser.

share|improve this question

4 Answers

up vote 59 down vote accepted

I've just written a library called jsPDF which generates PDFs using Javascript alone. It's still very young, and I'll be adding features and bug fixes soon. Also got a few ideas for workarounds in browsers that do not support Data URIs. It's licensed under a liberal MIT license.

I came across this question before I started writing it and thought I'd come back and let you know :)

Generate PDFs in Javascript

share|improve this answer
2  
Did I partially inspire jsPDF? I learned about jsPDF the day you announced it. Looking great so far. I ended up going with Prawn as it's easily the best PDF generation library out there for my requirements. I would still love to do all of my work in-browser as I'm not positive I'll get Ruby on the system I'm deploying to. I'm watching jsPDF very closely. I would love to help out but my time is very limited. That might change in the future. – amoeba May 4 '09 at 19:40
You did inspire it somewhat :), I was looking around on the internet to see if it already existed and saw that some people would find it useful. Let me know if you'd like to help out. I'm @MrRio on twitter. – James Hall May 7 '09 at 9:22
does not have image embedding as far as I know. – Timo Huovinen Jan 17 '12 at 15:49
This seems to work only in Chrome. FF8 and IE9 did not run this code – AntonioCS Feb 2 '12 at 12:57
1  
Seems like the project has stalled... – mg1075 Apr 14 '12 at 23:55
show 1 more comment

There's already an Actionscript 3.0 open source library that can generate PDF's 100% client side.

http://alivepdf.bytearray.org/

In theory, it should be possible to do it in Javascript too, I think, but it seems rather complex.

If requiring flash is acceptable, you could probably write some glue AS code to take data from JS (sending it as JSON, for instance), and use the library to generate the PDF.

share|improve this answer
2  
Note, that this will require flash 9/10 and is not able to be ported to javascript. – Daniel A. White Apr 12 '09 at 23:26
I think it should be possible to generate a PDF in memory using JS. The lack of certain language / environment features such as a ByteArray class means more work on your side, but it should be possible. Whether that's practical or not, is a different thing... – Juan Pablo Califano Apr 12 '09 at 23:35
The question said "entirely in Javascript". So this is not really a valid answer. – mydoghasworms Mar 20 '12 at 13:33

The bigger question here is are you not using a server-side technology? I really can't imagine a situation where it would be more feasible to implement a javascript implementation than just doing it on the server-side. Doing this in javascript would take a lot of work, would be far from perfect, and not very fast on older machines/browsers.

On the server, however, there's numerous open-source libraries and programs that can do the heavy lifting for you and cut down your development time. Like ghostscript for example.

share|improve this answer
1  
I'm just trying to get away with HTML+Javascript as I don't have control over the system I deploy on. If doing this through JS is a poor idea, as it is seeming to be, I will just have to go server-side like I wanted to in the first place. – amoeba Apr 13 '09 at 5:20
I know that this question and answer are very old, but I came across it while looking for a solution. One reason you might want this is if you are in environments where you aren't allowed to deploy server-side code. It's not pretty, but sometimes we have to go down that route. – ZachS Sep 6 '11 at 22:23
4  
I have a use case: You have a nice pretty graph generated by Javascript, in real-time based on user choices. The pdf generation is cpu intensive and you don't want to overload your poor server. Enter javascript solution. This is also applicable to html5 apps that are designed to work offline (enter android type apps) – Abe Petrillo Feb 7 '12 at 13:30

Even if you could generate the PDF in-memory in JavaScript, you would still have the issue of how to transfer that data to the user. It's hard for JavaScript to just push a file at the user.

To get the file to the user, you would want to do a server submit in order to get the browser to bring up the save dialog.

With that said, it really isn't too hard to generate PDFs. Just read the spec.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.