关于使用“下载”属性。我试图在下面的例子中给我的图像命名为“myImage”。由于这里陈述的原因,我认为这不起作用:Download attribute with a file name not working?
我的问题是,到底有没有?
图像总是与我的代码位于不同的服务器上。
<a download="myImage.jpg" href="http://hekman.picarioxpo.com/7267-Jordan.pfs?width=250&p.tn=7000-022.tif,Aged-Gray.tif">Download image</a>
答案 0 :(得分:0)
你可以:
document.createElement('canvas')
new Image()
image.onload
canvas.getContext('2d').drawImage()
image.src
canvas.toDataURL()
(这是有效的,因为跨源策略不适用于<img>
src。)