This is a small cli program written in rust to easily convert images
to ascii art, named after the latin word for art. It will take a while to generate the ascii characters, especially for larger images. By default it tries to use truecolor, if the terminal does not support truecolor, it falls back to 16 Color ANSI. When the ascii image is written to a file, the image will not use colors.
It supports .jpeg
, .png
, .gif
, .webp
and many more.
source: https://upload.wikimedia.org/wikipedia/commons/4/44/AbrahamLincolnheadonshouldersphotoportrait.jpg
For simply converting an image:
bash
artem PATH
For more options use:
bash
artem --help
To use custom ascii chars, use the --characters
(or -c
for short) argument.The characters should be ordered from darkest/densest to lightest.
If the background should be invisible, add a space at the end. Alternatively this program has already 3 predefined character sets,
accessibly by supplying the --characters
argument to gether with the number (0
, 1
or 2
) of the preset that should be used.
By default preset 1
is used.
bash
artem PATH --characters "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789<>|,.-#+!$%&/()=?*'_:; "
To change the size at which the converted image is displayed, use:
```bash
artem PATH --height
artem PATH --width
artem PATH --size 100 ```
To save the the image to a file, use the --output
flag.
```bash artem PATH --output ascii.txt
artem PATH --output ascii.html
artem PATH --output ascii.ans ```
The easiest way to install artem is using cargo
with
bash
cargo install artem
Alternatively, if you are on Debian/Ubuntu download the .deb
file from the releases tab and install it with:
bash
sudo dpkg -i artem.deb
One other distributions use the binary file provided in the release tab.
If you have rust/cargo installed, you can build the project with:
bash
cargo build
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please be aware that it might take some time for someone to respond.
This projects was heavily inspired by jp2a as well as the coding train video on ascii art.
Also a big thanks to ripgrep for indirectly helping with inspiration for the build setup.
[x] Better average the RGB values of multiple pixel
[x] Use the current terminal size to auto fit the image
[x] Support ANSI terminal colors
[x] Convert output to colored html
[x] Use multithreading
[x] Add tests
[ ] Add even more test
[ ] Convert multiple files at once
[x] Automate copying of completion files from OUT_DIR to deployment/assets
[x] Change name
[x] Publish
[ ] Use edge detection and directional ascii
[ ] Implement better resizing