Rust: Working with Ascii Art

Is there any crate to help me convert a text into ascii art.
For Example;
input

let word = "E".to_string();

Output;

### 
#   
##  
#   
###

font8x8 might be useful. The crate's home page has an example that shows how to print a single character as ASCII art. More complex text might take some more work.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.