Canvas 从 URL 创建图像

发布于 2024-10-31 08:43:09 字数 276 浏览 0 评论 0原文

我有一个使用参数在画布上生成图像的网址。当我加载浏览器时,我工作正常。

最后一行是:

 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨洒年华 2024-11-07 08:43:09

这是一个安全问题。如果图像不在同一域中,则无法读取画布中的图像数据。没有任何解决方法,抱歉

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文