在Node.js中,可以使用一些库来实现将WebP图像转换为JPEG。一个常用的库是sharp
,它是一个快速、高效的图像处理库。以下是一个简单的Node.js脚本示例,演示如何使用sharp
库将WebP转换为JPEG:
首先,确保已经安装了sharp
库。可以通过运行以下命令进行安装:
npm install sharp
main.js,将指定路径的webp文件转换成jpg
const sharp = require('sharp');// 输入WebP文件路径和输出JPEG文件路径const inputWebPPath = 'path/to/input.webp';const outputJpgPath = 'path/to/output.jpg';// 使用sharp库进行转换sharp(inputWebPPath).toFormat('jpeg') // 设置输出格式为JPEG.toFile(outputJpgPath, (err, info) => {if (err) {console.error(err);} else {console.log('Conversion successful:', info);}});
替换inputWebPPath
和outputJpgPath
为实际的输入和输出文件路径。
如果批量还可以使用webp在线转换工具:
https://www.strerr.com/cn/webp2jpg.html