yh-image-compress
v1.0.2
Published
image compress
Downloads
9
Maintainers
Readme
yh-image-compress
简介
yh-image-compress 是一个基于 @jsquash/avif @jsquash/jpeg @jsquash/jxl @jsquash/png @jsquash/webp 的图片压缩和格式转换库,支持 png、jpg、jpeg、gif、webp 等常见图片格式转换和图片压缩。
安装
npm install yh-image-compress
# or
yarn add yh-image-compress使用
import { toCompressImage } from 'yh-image-compress'
// outType = 'avif' | 'jpeg' | 'jxl' | 'png' | 'webp' 默认为 '图片原始格式'
// quality = 75 图片质量,默认为 75
let result = await toCompressImage(file, outType,quality);
// 返回数据
// result = {
// blobUrl, // 返回的图片二进制url
// newFile, // 反馈新的图片文件对象
// }