4 changed files with 642 additions and 260 deletions
@ -0,0 +1,46 @@
|
||||
export async function compressImageBlob(blob) { |
||||
return new Promise((resolve, reject) => { |
||||
const img = new Image(); |
||||
const reader = new FileReader(); |
||||
|
||||
reader.onload = e => { |
||||
img.src = e.target.result; |
||||
}; |
||||
|
||||
img.onload = () => { |
||||
const width = img.width; |
||||
const height = img.height; |
||||
const maxWidth = 800; // 最大宽度
|
||||
const maxHeight = 800; // 最大高度
|
||||
let newWidth = width; |
||||
let newHeight = height; |
||||
|
||||
// 计算缩放比例
|
||||
if (width > height) { |
||||
if (width > maxWidth) { |
||||
newHeight *= maxWidth / newWidth; |
||||
newWidth = maxWidth; |
||||
} |
||||
} else { |
||||
if (height > maxHeight) { |
||||
newWidth *= maxHeight / newHeight; |
||||
newHeight = maxHeight; |
||||
} |
||||
} |
||||
|
||||
// 创建离屏 canvas
|
||||
const offScreenCanvas = new OffscreenCanvas(newWidth, newHeight); |
||||
const ctx = offScreenCanvas.getContext('2d'); |
||||
ctx.drawImage(img, 0, 0, newWidth, newHeight); |
||||
|
||||
// 压缩图片
|
||||
offScreenCanvas |
||||
.convertToBlob({ type: 'image/jpeg', quality: 0.8 }) |
||||
.then(resolve) |
||||
.catch(reject); |
||||
}; |
||||
|
||||
reader.onerror = reject; |
||||
reader.readAsDataURL(blob); |
||||
}); |
||||
} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue