使用 Node JS 将图像从 RGB 转换为 CMYK

Converting an image from RGB to CMYK with Node JS

我的打印机只能使用 CMYK 颜色。我想用节点 js 制作一个电报机器人。 我在网上搜索直接转换图像颜色space。但是我找不到。

对于python;我找到 Image.convert()。它对我有用。 我的问题是我可以用节点包来做这个吗?

使用这个名为 Sharp 的很棒的 npm 包 https://github.com/lovell/sharp

安装是:

npm install sharp

那么你的 JS 就这么简单:

const sharp = require('sharp');

console.log('Converting...')

sharp('input.jpg')
    .toColourspace('cmyk')
    .toFile('output.jpg')
    .then(() => {
        console.log('Conversion completed!')
});