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

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.

share|improve this question
Is it possible to set the embedded icc profile? stackoverflow.com/questions/13803046/… – jedierikb Dec 10 '12 at 15:29

6 Answers

up vote 172 down vote accepted

Oops. Original answer was specific to a similar question. This has been revised:

var canvas = document.getElementById("mycanvas");
var img    = canvas.toDataURL("image/png");

with the value in IMG you can write it out as a new Image like so:

document.write('<img src="'+img+'"/>');
share|improve this answer
Thanks michael, looks like getContext together with toDataURL would do it – Parand Aug 18 '10 at 18:08
2  
Amazing! I've used this with Processing.js – logic-unit Mar 15 '11 at 21:07
5  
one more question, how can I save the image I got in this tag to server. Any guess?? – Surya Jun 27 '11 at 8:41
1  
@Surya - In the example above, I would use AJAX to POST the img variable to the server. Alternatively, you could set the value of a hidden field in a form. – Erik Karulf Jul 13 '11 at 8:36
@Erik Karulf Thanks for your response!! I'll give a try to this approach :) – Surya Jul 13 '11 at 14:01
show 3 more comments

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.

 <canvas id=canvas width=200 height=200></canvas>
 <script>
      window.onload = function() {
          var canvas = document.getElementById("canvas");
          var context = canvas.getContext("2d");
          context.fillStyle = "green";
          context.fillRect(50, 50, 100, 100);
          // no argument defaults to image/png; image/jpeg, etc also work on some
          // implementations -- image/png is the only one that must be supported per spec.
          window.location = canvas.toDataURL("image/png");
      }
 </script>

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.

share|improve this answer
18  
I can't believe this is possible! Man, I can't wait for the future. – peteorpeter Feb 19 '11 at 19:19

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/

share|improve this answer
That's great, you can always do a screenshot if you don't need to do it programmatically too. – Matthew James Taylor May 29 '09 at 0:33
1  
true, but he didn't specify whether it was for personal use or for sending to a server. Might need a little tweaking to accomplish the second task though. – Jonathan Fingland May 29 '09 at 0:35
I am looking for programmatic, not screen capture. – Parand May 29 '09 at 0:56
I'm not sure what the license terms are on Canvas2Image but you might want to take the generated image and post it to the server (skipping the save/output to browser step). From the examples, I gather that's not how it was intended to be used. – Jonathan Fingland May 29 '09 at 2:30
2  
/* * Canvas2Image v0.1 * Copyright (c) 2008 Jacob Seidelin, cupboy@gmail.com * MIT License [opensource.org/licenses/mit-license.php] */ You can do what you want with it. I made an optimized version of this lib here : flotr.googlecode.com/svn/trunk/flotr/flotr/prototype/lib/… – Fabien Ménager May 29 '09 at 11:28
show 1 more comment

I would use "wkhtmltopdf" it just work great. It uses webkit engine (used in Chrome, Safari, etc.) and it is very easy to use:

wkhtmltopdf stackoverflow.com/questions/923885/ this_question.pdf

That's it! (Try it)

share|improve this answer
1  
I'm in the wkhtmltopdf camp, too. We've been using it for archiving and its AMAZING. – ajax81 Mar 30 '12 at 15:06

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):

>phantomjs rasterize.js http://raphaeljs.com/polar-clock.html clock.png

Do you want to render a page to a PDF ?

> phantomjs rasterize.js 'http://en.wikipedia.org/w/index.php?title=Jakarta&printable=yes' jakarta.pdf
share|improve this answer

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.

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