images to html
two modes:
braille: 2x4 subpixel dots, fast, classicglyph: font aware matching. Matches tone, edge magnitude, and edge direction. Uses bundled jetbrains mono by default
cargo run -- example.jpg -o out.html --mode braille --width 180 --zoom 1.5cargo run -- example.jpg -o glyph.html --mode glyph --width 140 --edge 0.55 --dir 0.35--mode:brailleorglyph--width: output columns--zoom: html scale factor--edge: edge strength weight (glyph mode)--dir: edge direction weight (glyph mode)
MIT

