如何使用NodeJS更改图像类型?
我需要在上传后更改我的图像类型。我尝试过使用image_magick,但失败了。更改图像类型的最佳方法是什么?如何使用NodeJS更改图像类型?
回答:
根据我的经验,node.js中最好的ImageMagick替代方案是基于libvips库的sharp
。
一个简单的使用例(JPEG转换到PNG):
const sharp = require('sharp') // [...]
sharp('input.jpg')
.rotate()
.toFile('output.png', (err, info) => {
console.log(info)
})
文档:http://sharp.dimens.io/en/stable/
以上是 如何使用NodeJS更改图像类型? 的全部内容, 来源链接: utcz.com/qa/265110.html