标签: javascript html5 canvas
是否可以测量/检测我从canvas.toDataURI方法生成的图像大小?
canvas.toDataURI
我需要检测它是否大于某个大小,如果是,那么告诉用户它太大而无法上传。
答案 0 :(得分:2)
我想你想要这样的东西? http://jsfiddle.net/qb65r4Lf/
//pass string into the function... function byteCount(s) { return encodeURI(s).split(/%..|./).length - 1; }