https://github.com/taga3s/ascii-art
A CLI tool that generates ASCII Art from any image you like.
https://github.com/taga3s/ascii-art
ascii-art cli go
Last synced: about 2 months ago
JSON representation
A CLI tool that generates ASCII Art from any image you like.
- Host: GitHub
- URL: https://github.com/taga3s/ascii-art
- Owner: taga3s
- License: mit
- Created: 2024-05-26T08:00:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-07T08:29:05.000Z (2 months ago)
- Last Synced: 2025-08-07T10:03:38.719Z (2 months ago)
- Topics: ascii-art, cli, go
- Language: Go
- Homepage:
- Size: 286 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ascii-art
A CLI tool that generates ASCII art from any image you like.

## Usage
Here is basic command. It supports `.jpg (.jpeg)` and `.png` image.
```
$ ascii-art ./cat.png
```You can use `--threshold` or `-t` option to use any threshold. The default threshold is determined automatically by [OTSU's method](https://en.wikipedia.org/wiki/Otsu%27s_method).
```
$ ascii-art -t 128 ./cat.png
```You can use `--magnification` or `-m` option to control the size of the ascii art. The default magnification is 1.0.
```
$ ascii-art -m 2.0 ./cat.png
```## License
- [MIT](https://github.com/taga3s/ascii-art/blob/main/LICENSE)