Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 660 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 660 Bytes

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