1.0.2 • Published 4 years ago

image-tool v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

image-tool

提供上传图片的压缩,exif手机图片的方向矫正

使用方法

导入

 import {ImageTool} from "image-tool";

默认压缩为800*800

file转base64

ImageTool.imgCompressAndOrientationAdjust(file).then(base64=>{
    //base64
})

file转blob

ImageTool.imgCompressAndOrientationAdjust2Blob(file).then(blob=>{
    //blob
})