Build an ASCII Art Generator
Build a web tool that converts images to ASCII art with adjustable character density and color support.
Requirements
Upload an image or paste an image URLConvert image to ASCII art in real-timeCharacter density slider: from sparse (. :) to dense (@ # $)Width control: number of characters per lineTwo modes: monochrome (classic ASCII) and colored (ANSI-style with colored characters)Copy to clipboard buttonLive preview that updates as you adjust settingsInvert mode (dark-on-light vs light-on-dark)Technical Notes
Load image to Canvas, read pixel data, map brightness values to ASCII characters. For colored mode, wrap each character in a span with the pixel's color.
Bonus Points
Webcam live feed to ASCII art in real-timeCustom character set inputExport as HTML or text file