admin管理员组文章数量:1315829
I'm using Cropper to get the blob for a cropped image. I'm using the latest versions of Chrome and IE, but I'm getting 'canvas.toBlob is not a function' in Chrome and 'Object doesn't support property or method 'toBlob' in IE. Seems like I'm following the doc correctly but I might be missing some library or something. Following the doc here and this thread from SO here
Interestingly enough I can call
var t = $("#imageToCrop").cropper('getCroppedCanvas').toDataURL();
and it works fine to return the data but toBlob doesn't seem to work.
Here is my JS and HTML.
var canvas = document.getElementById("imageToCrop");
canvas.toBlob(function(blob) {
var t = blob;
});
<div style="width: 500px; height: 500px; display: table; margin: 0 auto;">
<canvas id="imageToCrop" style="border: 1px solid black;" src=""></canvas>
</div>
I'm using Cropper to get the blob for a cropped image. I'm using the latest versions of Chrome and IE, but I'm getting 'canvas.toBlob is not a function' in Chrome and 'Object doesn't support property or method 'toBlob' in IE. Seems like I'm following the doc correctly but I might be missing some library or something. Following the doc here and this thread from SO here
Interestingly enough I can call
var t = $("#imageToCrop").cropper('getCroppedCanvas').toDataURL();
and it works fine to return the data but toBlob doesn't seem to work.
Here is my JS and HTML.
var canvas = document.getElementById("imageToCrop");
canvas.toBlob(function(blob) {
var t = blob;
});
<div style="width: 500px; height: 500px; display: table; margin: 0 auto;">
<canvas id="imageToCrop" style="border: 1px solid black;" src=""></canvas>
</div>
I also tried this below but seeing the same errors
var t = $("#imageToCrop").cropper('getCroppedCanvas').toBlob();
Share
Improve this question
edited May 23, 2017 at 12:06
CommunityBot
11 silver badge
asked Nov 27, 2015 at 21:25
chuckdchuckd
14.6k33 gold badges178 silver badges395 bronze badges
1 Answer
Reset to default 6Currently, toBlob
is only fully supported in Firefox. Internet Explorer has partial support from IE 10, but it is vendor-prefixed to what I assume is msToBlob
. There is however at least one polyfill available.
Here are the relevant issues for Chrome and Safari:
- Chromium 67587 (Chrome)
- WebKit 71270 (Safari)
For some reason, the WebKit bug is marked as "RESOLVED WONTFIX".
本文标签: javascriptCanvas toBlob is not recognized as a function in Chrome or IEStack Overflow
版权声明:本文标题:javascript - Canvas toBlob is not recognized as a function in Chrome or IE - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741989692a2408897.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论