检测aCanvas.toDataURI的千字节大小

时间:2015-08-13 06:20:40

标签: javascript html5 canvas

是否可以测量/检测我从canvas.toDataURI方法生成的图像大小?

我需要检测它是否大​​于某个大小,如果是,那么告诉用户它太大而无法上传。

1 个答案:

答案 0 :(得分:2)

我想你想要这样的东西?
http://jsfiddle.net/qb65r4Lf/

//pass string into the function...
function byteCount(s) {
    return encodeURI(s).split(/%..|./).length - 1;
}
相关问题