単色の画像を生成してリプライで返すように

This commit is contained in:
na2na 2022-02-17 01:03:16 +09:00
parent e5e9d0076e
commit d23ffe197c
2 changed files with 41 additions and 5 deletions

View file

@ -1,6 +1,7 @@
import autobind from 'autobind-decorator';
import Module from '@/module';
import Message from '@/message';
import { generateColorSample } from './render';
export default class extends Module {
public readonly name = 'color';
@ -21,13 +22,31 @@ export default class extends Module {
const b = Math.floor(Math.random() * 256);
// rgbをhexに変換する
const hex = `${r.toString(16)}${g.toString(16)}${b.toString(16)}`;
const message = `RGB: ${r}, ${g}, ${b} (#${hex})とかどう? [参考](https://www.colorhexa.com/${hex})`
msg.reply(message, {
immediate: true
});
return true;
const message = `RGB: ${r}, ${g}, ${b} (# ${hex})とかどう?`
setTimeout(async () => {
const file = await this.getColorSampleFile(r,g,b);
this.log('Replying...');
msg.reply(message, { file });
}, 500);
return {
reaction: 'like'
};
} else {
return false;
}
}
@autobind
private async getColorSampleFile(r,g,b): Promise<any> {
const colorSample = generateColorSample(r,g,b);
this.log('Image uploading...');
const file = await this.ai.upload(colorSample, {
filename: 'color.png',
contentType: 'image/png'
});
return file;
}
}

View file

@ -0,0 +1,17 @@
import { createCanvas } from 'canvas';
const imageSize = 512; //px
export function generateColorSample(r: string, g: string, b: string) {
const canvas = createCanvas(imageSize, imageSize);
const ctx = canvas.getContext('2d');
ctx.antialias = 'none';
// 引数で渡されたrgb値を基準に、色を塗りつぶす
ctx.fillStyle = `rgb(${r},${g},${b})`;
ctx.beginPath();
ctx.fillRect(0, 0, imageSize, imageSize);
// canvas.toBuffer()をreturn
return canvas.toBuffer();
}