Is it possible to capture or print what's displayed in an html canvas as an image or pdf? I'd like to generate an image via canvas, and I'd like to be able to generate a png from that image.
|
|
Oops. Original answer was specific to a similar question. This has been revised:
with the value in IMG you can write it out as a new Image like so:
|
|||||||||||||||||
|
|
HTML5 provides Canvas.toDataURL(mimetype), which is implemented in Opera, Firefox, and Safari 4 beta. There are a number of security restrictions however (mostly to do with drawing content from another origin onto the canvas). So you don't need an additional library, eg.
Theoretically this should create and then navigate to an image with a green square in the middle of it, but i haven't tested. (Alex) -> But I tested it and IT WORKS! Thank you very much. |
|||||
|
|
http://ajaxian.com/archives/canvas2image-save-out-your-canvas-data-to-images Hope that helps. Edit: here's the original site for Canvas2Image http://www.nihilogic.dk/labs/canvas2image/ |
|||||||||||||||
|
|
I would use "wkhtmltopdf" it just work great. It uses webkit engine (used in Chrome, Safari, etc.) and it is very easy to use:
That's it! (Try it) |
|||||
|
|
Another interesting solution is PhantomJS. It's a headless WebKit scriptable with JavaScript or CoffeeScript. One of the use case is screen capture : you can programmatically capture web contents, including SVG and Canvas and/or Create web site screenshots with thumbnail preview. The best entry point is the screen capture wiki page. Here is a good example for polar clock (from RaphaelJS):
Do you want to render a page to a PDF ?
|
|||
|
|
protected by Flexo♦ Feb 19 '12 at 10:35
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

