วิธีคัดลอกรูปภาพ

เบราว์เซอร์สมัยใหม่จำนวนมากรองรับการคัดลอกรูปภาพไปยังคลิปบอร์ดในรูปแบบ PNG และ SVG ระบบยังไม่รองรับรูปแบบอื่นๆ ด้วยเหตุผลด้านความปลอดภัย

วิธีสมัยใหม่

การใช้ API คลิปบอร์ดแบบไม่พร้อมกัน

เมธอด Clipboard.write() จะใช้อาร์เรย์ของออบเจ็กต์ ClipboardItem และแสดงผล Promise ที่จะแปลค่าเมื่อเขียนรูปภาพไปยังคลิปบอร์ดเรียบร้อยแล้ว Clipboard.write() สามารถใช้จากออบเจ็กต์ window ที่มีโฟกัสเท่านั้น

การสนับสนุนเบราว์เซอร์

  • 66
  • 79
  • 13.1

แหล่งที่มา

วิธีคลาสสิก

ใช้ไป navigator.clipboard.writeText()

แม้ว่าบางเบราว์เซอร์จะไม่รองรับ navigator.clipboard.write() สำหรับข้อมูลไบนารี แต่เบราว์เซอร์บางตัวรองรับ navigator.clipboard.writeText() หากต้องการคัดลอกรูปภาพ SVG คุณสามารถคัดลอกซอร์สโค้ด SVG แทนการคัดลอกรูปภาพได้ โชคไม่ดีสำหรับรูปภาพ PNG

การสนับสนุนเบราว์เซอร์

  • 66
  • 79
  • 63
  • 13.1

แหล่งที่มา

การเพิ่มประสิทธิภาพแบบต่อเนื่อง

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);
  }
});

อ่านเพิ่มเติม

เดโม

HTML

<!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>

CSS


        :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;
}
        

JS


        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);
  }
});