jQuery and Canvas.toDataURL

Posted by Jeff on Stack Overflow See other posts from Stack Overflow or by Jeff
Published on 2010-05-27T20:54:57Z Indexed on 2010/05/27 22:01 UTC
Read the original article Hit count: 451

Filed under:
|
|
|

I'm working on a script, and a small part of that involves taking a canvas and converting it to a downloadable image. To do this, I do:

var thumb_jpeg = thumbnail.toDataURL("image/jpeg");
$("#" + options.dest).attr('src',thumb_jpeg);

...where thumbnail is a canvas tag and options.dest is the name of an img id.

This code works perfectly in Chrome, but when I try it in Firefox, Firebug throws up this error:

Security error" code: "1000
var thumb_jpeg = thumbnail.toDataURL("image/jpeg");

I would link to the whole script, but everything is hosted on my computer. Does anyone have any idea what this might mean?

Thanks! Jeff

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about jQuery