Canvas 从 URL 创建图像
我有一个使用参数在画布上生成图像的网址。当我加载浏览器时,我工作正常。
最后一行是:
window.location = canvas.toDataURL("image/png");
当我尝试从另一个页面使用此网址时,例如:
<img src="http://localhost/index.html?i=0 />
无法加载。我怎样才能加载它。
提前致谢。
I have a url that generates images on canvas with parameters. I works ok when I load with browser.
The last line is:
window.location = canvas.toDataURL("image/png");
When I try to use this url from another page like:
<img src="http://localhost/index.html?i=0 />
Doesnt load. How can i load it.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个安全问题。如果图像不在同一域中,则无法读取画布中的图像数据。没有任何解决方法,抱歉
It's a security issue. You can't read image data in canvas if the image is not on the same domain. There aren't any work-arounds, sorry