1

上传后我需要更改我的图像类型。我曾尝试使用 image_magick 但失败了。更改图像类型的最佳方法是什么。

4

1 回答 1

2

根据我的经验,node.js 中最好的 ImageMagick 替代品是sharp基于 libvips 库的。

一个简单的用法示例(将 jpeg 转换为 png):

const sharp = require('sharp')
// [...]
sharp('input.jpg')
.rotate()
.toFile('output.png', (err, info) => {
  console.log(info)
})

文档:https ://sharp.pixelplumbing.com/

于 2017-12-27T13:27:46.800 回答