Skip to content

bonniesimon/ascii-art-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ASCII-art

Problem Statement

Input an image. Output the ASCII-art of the image.

Demo

demo

Learnings

  • Basic understanding of Golang. Data types available and basic operations of the language.
  • Understanding how image files are stored.
  • Each pixels consists of values of R,G & B.
  • Converting RGB values to greyscale values
  • Mapping brightness values to ASCII characters
  • Printing ASCII art to standard output

Done as a part of Programming Projects for Advanced Beginners