有什么方法可以在没有库的情况下使用纯 javascript 将图像复制到剪贴板吗?

Is there any way to copy image to clipboard with pure javascript without libraries?

我试过像 this site 那样使用 document.execCommand('copy') 但它没有用(尽管 console.log表示成功)。我还使用了 navigator.clipboard API 但这对我的 jpg 图像不起作用,这是它的代码:

navigator.clipboard.write(
[
    new ClipboardItem({
        'image/jpeg': new Blob( ['media/anime_0.jpg'],{type:'image/jpeg'} )
    })
])
.then(e=>{console.log('Copied to clipboard')})
.catch(e=>{console.log(e)})

以上代码产生以下错误:

DOMException: Sanitized MIME type image/jpeg not supported on write.

有人知道我是否做错了什么,或者是否可以在不使用外部库的情况下将图像复制到剪贴板?

感谢 Keith link 至:convert image into blob using javascript

这是我用于我的应用程序的解决方案(它只会将图像保存为 png,因为 jpeg/jpg 文件不断给我 DOMException 错误。

const img = new Image
const c = document.createElement('canvas')
const ctx = c.getContext('2d')

function setCanvasImage(path,func){
    img.onload = function(){
        c.width = this.naturalWidth
        c.height = this.naturalHeight
        ctx.drawImage(this,0,0)
        c.toBlob(blob=>{
            func(blob)
        },'image/png')
    }
    img.src = path
}

setCanvasImage('media/anime_0.jpg',(imgBlob)=>{
    console.log('doing it!')
    navigator.clipboard.write(
        [
            new ClipboardItem({'image/png': imgBlob})
        ]
    )
    .then(e=>{console.log('Image copied to clipboard')})
    .catch(e=>{console.log(e)})
})