js实现保存图片到本地


当你想分享你的带二维码的宣传图片给别人的时候,一般要先将文件下载到本地,再去微信、或QQ等软件分享出去。

直接上代码:

// fetch有同源策略,本地调试注意要起服务器        
fetch("https://gelimalloss.gree.com/gree-mall-v2/images/comment-icon.png", {

            mode: ‘cors’
        })

        .then(async res => {
           const e = await res.blob()
           return e;
        })
        .then((blob) => {
            const a = document.createElement('a');
            a.style.display = 'none';
            a.href = URL.createObjectURL(blob);
            a.download = 'image.png';
            document.body.appendChild(a);
            a.click();
            setTimeout(() => {
                a.remove();
            }, 2000)
        })

 在浏览器的下载栏就会出现下载的图片了

js实现保存图片到本地

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/281318.html

(0)
上一篇 2022年8月21日
下一篇 2022年8月21日

相关推荐

发表回复

登录后才能评论