Is there a possible way to draw an image on an image in a Windows Console Application? I know there is "Graphics", but its available in Windows Forms Application, which I am not looking for. For anyone wondering, i'ts for a Discord bot.
For example, i have a command called Draw which looks like this:
[Command("Draw")]
public async Task drawimage(string imagepath)
{
string baseimage = "baseimage.png"
string result = ... // result image
await Context.Channel.SendFileAsync(result);
}
When the command is called like: >Draw E:/someimage.png
for example it will
draw an image on a "base" image.
After the command is called the E:/someimage.png
will draw in the middle and send it to the channel the command is called in:
Result image < my goal
Is there any way to do this? Thanks in advance.