// 引入所需的库const sharp = require('sharp');// 图像裁剪函数function cropImage(inputPath, outputPath, x, y, width, height) {
sharp(inputPath)
.extract({ left: x, top: y, width: width, height: height })
.toFile(outputPath, (err, info) => {
if (err) {
console.error('裁剪图像时出错:', err);
} else {
console.log('图像裁剪成功,保存到:', outputPath);
}
});}// 调用裁剪函数cropImage('input.jpg', 'output.jpg', 100, 100, 200, 200);
暂时没有评论,来抢沙发吧~