When I download my picture, it is an error:No 'Access-Control-Allow-Origin' header is present on the requested resource. codes of download pictures:
export function downloadPhoto (imgsrc) {
let image = new Image();
image.setAttribute("crossOrigin", "anonymous");
image.onload = function() {
let canvas = document.createElement("canvas");
canvas.width = image.width;
canvas.height = image.height;
let context = canvas.getContext("2d");
context.drawImage(image, 0, 0, image.width, image.height);
let url = canvas.toDataURL("image/png");
let a = document.createElement("a");
let event = new MouseEvent("click");
a.download = "photo";
a.href = url;
a.dispatchEvent(event);
};
image.src = imgsrc;
}