admin管理员组文章数量:1317915
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 puter. Does anyone have any idea what this might mean?
Thanks! Jeff
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 puter. Does anyone have any idea what this might mean?
Thanks! Jeff
Share Improve this question edited Aug 3, 2011 at 11:28 Jonas 129k102 gold badges327 silver badges405 bronze badges asked May 27, 2010 at 20:54 JeffJeff 231 gold badge1 silver badge3 bronze badges2 Answers
Reset to default 2I believe it may be because you have it hosted on your puter. Are you working directly from your local filesystem or are you working on a local server like MAMP or WAMP? I had this security code pop up on me before and it was alleviated when I moved my files from my hard drive on to a server.
Friend, this way works perfectly:
document.querySelector('#mycanvas').toDataURL();
本文标签: javascriptjQuery and CanvastoDataURLStack Overflow
版权声明:本文标题:javascript - jQuery and Canvas.toDataURL - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742024106a2415218.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论