最新のブラウザの多くは、PNG 形式または SVG 形式で画像をクリップボードにコピーできます。セキュリティ上の理由により、その他の形式はまだサポートされていません。
最新の手法
Async Clipboard API を使用する
Clipboard.write()
メソッドは、ClipboardItem
オブジェクトの配列を受け取り、画像がクリップボードに正常に書き込まれたときに解決される Promise を返します。Clipboard.write()
は、フォーカスされている window
オブジェクトからのみ使用できます。
従来のやり方
navigator.clipboard.writeText()
の使用
すべてのブラウザがバイナリデータの navigator.clipboard.write()
をまだサポートしているわけではありませんが、navigator.clipboard.writeText()
はすべてサポートされています。画像自体をコピーする代わりに SVG 画像をコピーする場合は、SVG のソースコードをコピーできます。残念ながら、PNG 画像ではうまくいきません。
段階的な補正
const button = document.querySelector('button');
const img = document.querySelector('img');
button.addEventListener('click', async () => {
const responsePromise = fetch(img.src);
try {
if ('write' in navigator.clipboard) {
await navigator.clipboard.write([
new ClipboardItem({
'image/svg+xml': new Promise(async (resolve) => {
const blob = await responsePromise.then(response => response.blob());
resolve(blob);
}),
}),
]);
// Image copied as image.
} else {
const text = await responsePromise.then(response => response.text());
await navigator.clipboard.writeText(text);
// Image copied as source code.
}
} catch (err) {
console.error(err.name, err.message);
}
});
参考資料
デモ
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎉</text></svg>"
/>
<title>How to copy images</title>
</head>
<body>
<h1>How to copy images</h1>
<img src="assets/fugu.svg" alt="Fugu fish." width="128" height="128">
<button type="button">Copy</button>
</body>
</html>
:root {
color-scheme: dark light;
}
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
margin: 1rem;
font-family: system-ui, sans-serif;
}
button {
display: block;
}
const button = document.querySelector('button');
const img = document.querySelector('img');
button.addEventListener('click', async () => {
const responsePromise = fetch(img.src);
try {
if ('write' in navigator.clipboard) {
await navigator.clipboard.write([
new ClipboardItem({
'image/svg+xml': new Promise(async (resolve) => {
const blob = await responsePromise.then(response => response.blob());
resolve(blob);
}),
}),
]);
// Image copied as image.
} else {
const text = await responsePromise.then(response => response.text());
await navigator.clipboard.writeText(text);
// Image copied as source code.
}
} catch (err) {
console.error(err.name, err.message);
}
});