可以使用 JavaScript 库或框架来实现图片压缩功能。
例如可以使用 "canvas" 元素和 "FileReader" 对象来实现图片压缩。
以下是一个简单的示例代码:
// 选择文件 input 元素的 id
const inputId = 'input';
// 压缩后图片的大小(单位为字节)
const targetSize = 100000;
// 选择文件
const input = document.getElementById(inputId);
const file = input.files[0];
// 创建 FileReader 对象
cons