Skip to content

Mika-dot/PictureConsole

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 

Repository files navigation

PictureConsole

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"));

ConsoleWriteImage

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);

ComputeColors

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);

GetConsoleHandle

better with that

Releases

No releases published

Packages

No packages published

Languages