bdoycn / img-to-blob

将 img 中的图片资源转换为二进制数据

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IMG-TO-BLOB

说明

将 img 标签中的图片数据转换成二进制数据

以便用于复制和上传

使用方法

以复制图片为例

import { imgToBlob } from 'img-to-blob';

const copyImg = async (img) => {
  const blob = await imgToBlob(img)

  navigator.clipboard.write([
    new ClipboardItem({
      [blob.type]: blob,
    })
  ]);
}

About

将 img 中的图片资源转换为二进制数据


Languages

Language:TypeScript 100.0%