我主要是在Discord中制造机器人。 我决定创建一个“油炸”命令:
// stuff here
function deepfry(link) {
var pixelValue = Math.floor(Math.random() * 2 + 2)
Jimp.read(link)
.then(image => {
image
.pixelate(pixelValue)
.contrast(0.95)
.write('./images/deepfry.png')
message.channel.send({
files: [
'./images/deepfry.png'
]
})
})
}
我注意到,与其他油炸图像相比,它缺少一些噪音。我找不到关于应用它的任何信息(嗯,使用Jimp),关于如何应用它的任何想法?
答案 0 :(得分:0)
我对Jimp不太熟悉,但是通过阅读文档,您可以尝试以下一些方法;
image.posterize( n );
image.sepia();