Skip to content

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

Notifications You must be signed in to change notification settings

bdoycn/img-to-blob

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 中的图片资源转换为二进制数据

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages