是否可以在javascript中将图像加载到字节数组中
是否可以在 javascript 中以字节数组加载图像而不是将其加载到画布上? 我想在 javascript webOS 中制作一个图像编辑器,但我无法使用 HTML 5 画布的 toDataURl 方法,因为 webOs 不支持它......
is it possible to load an image in byte array in javascript instead of loading it to canvas?
I want to make an image editor in javascript webOS but I can't use toDataURl method of HTML 5 canvas because webOs don't support it ....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Javascript只能处理可打印字符,因此某些二进制值在Javascript中无效。也就是说,有多种方法可以使用 base64 或 unicode 来编码或打包二进制数据。不幸的是,我认为没有简单的解决方案。
Javascript can only handle printable characters, so some binary values are invalid in Javascript. That being said, there are ways to encode or pack binary data using base64 or unicode. Unfortunately, I don't think there is a simple solution.