EbiseLutica / BotBone

Universal-Platform Chatbot Framework for C# + .NET Core
MIT License
7 stars 1 forks source link

Imaging API #3

Open EbiseLutica opened 4 years ago

EbiseLutica commented 4 years ago

クリスマスカード、年賀状といった画像生成botを作るために、ImageSharpベースの画像処理APIを実装する。バックエンドが変わってもAPIに影響しないように、抽象化 API を策定する

以下、APIを用いたプログラムのイメージ、変わるかも

using System.Drawing;
var image = core.CreateImage(400, 300, Color.White)
    .Line(16, 96, 284, 96, Color.Gray);
    .Text(16, 80, "Hello from BotBone!", Color.Black);
await shell.PostWithFilesAsync(null, image: image);
EbiseLutica commented 4 years ago

SkiaSharp のほうが良いかも