跨域加载图片的问题??

cc.loader.load({url: head_url, type: “png”}, function(err, img){
debugger;
if (err) {
gamelog.war(“下载用户头像出错!!”+err.errorMessage);
//gamelog.err(JSON.stringify(err));
return;
}
_this.user_head.spriteFrame=new cc.SpriteFrame(img);
//遮罩搞定
//在精灵下面 添加一个画布 在添加要给渲染组件mask 在mask里面添加要给精灵图片
});

//报错 跨域记载第三方服务器图片资源
Access to Image at ‘http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTItSGQRE3CwHuSziaic2gXAdRpGGWAKYEJ6ZVYW2MQT2eiaQfB9JqhsicgBHUUGfo1FDvFuwawvGb0KZg/132’ from origin ‘http://localhost:7456’ has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘http://localhost:7456’ is therefore not allowed access.
请问 不修改服务器的情况下 有没有好的解决方法… 在程序中 动态创建 img 也存在跨域加载图片的问题???谢谢 !