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.
|
|
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. |
|||
|
|
|
|
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/ |
||||||||||
|
