gpt4 book ai didi

javascript - 如何在 CamanJS 中编辑远程图像

转载 作者:搜寻专家 更新时间:2023-10-31 22:00:53 24 4
gpt4 key购买 nike

文档说

CamanJS comes with a PHP proxy (you're welcome to add a proxy in the language of your choice) that you can use in the proxies folder. Before you use CamanJS for editing, all you have to do to enable the proxy is:

// Will use the PHP proxy in the proxies folder.
Caman.remoteProxy = Caman.IO.useProxy('php');

// You can also specify a URL instead of calling useProxy().
// This will call /proxies/proxy.php?camanProxyUrl={url}
Caman.remoteProxy = "/proxies/proxy.php";

看完之后我写了下面的代码

<script>
Caman.remoteProxy = Caman.IO.useProxy('php');
more javaScript here.
</script>

浏览器怎么会说出于安全原因无法编辑。我写错了吗?我必须在某处包含一个 php 文件吗?那个 PHP 文件在哪里?

最佳答案

您必须在服务器上托管 PHP 脚本(位于存储库的 proxies 文件夹中),以便它可以在与服务 CamanJS 的页面完全相同的域中使用。该脚本会将来自远程源的图像数据代理到浏览器,以规避此限制。当然,您并不局限于使用提供的 PHP 脚本。您可以使用任何您想要的服务器端语言,只要它做同样的事情。

或者,如果您可以控制源,则可以向服务器响应添加跨源资源共享 (CORS) header ,这将告诉浏览器尽管域不同也可以使用该图像。

关于javascript - 如何在 CamanJS 中编辑远程图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29643147/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com