HTML5 formdata:从远程服务器读取图像数据
有人知道吗,是否可以从远程 URL 将图像读取为二进制文件。 我知道文件 API 使我们可以从本地系统读取二进制文件。 但我找不到有关从远程 URL 读取的信息。也许我什至可以从浏览器缓存中读取此信息,在我加载此信息后?
does someone know, is it possible read image to binary from remote URL.
I know that File API give us possibility read as binary file from our local system.
But i cant find info about reading from remote URL. Maybe even i can read this info from browser cache, after i load this info from to or else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这会解决你的问题,用你的url作为SRC制作一个img标签。
这个函数是在Get image data in JavaScript?上找到的
,像使用它
或者使用你自己的HTML 中的 img 标签
I think this will solve your problem, make a img tag with your url as SRC.
This function was found on Get image data in JavaScript?
Use it like
Or use your own img tag from your HTML