Outputting images to the console.
The first way to display the image
ConsoleWriteImage(bmp);
the second way to display the image
ConsoleWriteImage(new Bitmap("C:\\1.png"));
Getting a picture from an ip camera
Bitmap image = BmpURL("http://185.10.80.33:8082/cgi-bin/guestimage.html");
the third way to display the image
CieLab.ComputeColors();
Bitmap image = new Bitmap("C:\\1.png", true);
CieLab.DrawImage(image);
cool withdrawal method
the fourth way of displaying the image cool
Graphics.FromHwnd(DrawConsole.GetConsoleHandle()).DrawImage(Image.FromFile("C:\\1.png"), 50, 50, 250, 250);
better with that