Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 667 Bytes

README.md

File metadata and controls

27 lines (15 loc) · 667 Bytes

ITA

Image To ASCII library for .NET framework

Input Image

sample_image

Sample Code

ITAImage image = new ITAImage(PATH);
image.ResizeImage(1000, 250);

image.colorCharacters.WhiteColorCharacter = '▒';  
image.colorCharacters.BlackColorCharacter = '█';
image.colorCharacters.RGBBelowHundredAndFifty = '▓';
image.colorCharacters.OtherColorsCharacter = '▒';

string imageASCII = image.ToString();
Console.WriteLine(imageASCII);

Output

sample_image