图片压缩的几种方式
// 图片压缩统一转webp格式处理
export function compressImageToWebp(file: File,options?: { maxWidth?: number; quality?: number },callback: (file: File) > void
) {const { maxWidth 800, quality 0.8 } options || {};const reader new FileReader();reader…
2026/7/16 9:06:50