来自跨启用站点的跨域图像加载被拒绝

Cross-origin image load from cross-enabled site is denied(来自跨启用站点的跨域图像加载被拒绝)
本文介绍了来自跨启用站点的跨域图像加载被拒绝的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用启用 CORS 的图像,该图像位于启用 cors 的站点:dropbox.com.
我遇到了一个错误:CORS 政策拒绝跨域图像加载.

I'm trying to use CORS enabled image which is located on cors-enabled site: dropbox.com.
I've got an error: cross-origin image load denied by CORS policy.

如何解决?

<html>
    <body>
        <img id="output" src="#"/>

        <script>
            var img = new Image();
            img.crossOrigin = "anonymous";

            var canvas = document.createElement("canvas");

            img.onload = function () {
                canvas.width = img.width;
                canvas.height = img.width;
                var ctx = canvas.getContext("2d");
                ctx.drawImage(img, 0, 0);
            }

            img.src = "https://www.dropbox.com/s/54an0126onoxezj/stone1.png";

            var output = document.getElementById("output");
            output.src = canvas.toDataURL("image/png");

        </script>
    </body>

推荐答案

您链接到的页面未启用 CORS,但您实际上并不想下载该页面(即 HTML).您想要在那里显示的图像.该文件的直接链接 启用了 CORS:https://dl.dropboxusercontent.com/s/54an0126onoxezj/stone1.png.

The page you're linking to isn't CORS-enabled, but you don't actually want to download that page (which is HTML) anyway. You want the image that is displayed there. A direct link to that file is CORS-enabled: https://dl.dropboxusercontent.com/s/54an0126onoxezj/stone1.png.

将共享链接转换为直接链接的方法是将域从 www.dropbox.com 更改为 dl.dropboxusercontent.com.请参阅 https://www.dropbox.com/developers/blog/53/programmatically-download-content-from-share-links.

The way to convert a share link to a direct link is to change the domain from www.dropbox.com to dl.dropboxusercontent.com. See https://www.dropbox.com/developers/blog/53/programmatically-download-content-from-share-links.

这篇关于来自跨启用站点的跨域图像加载被拒绝的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)