yummy-yummy ANSI art
Go to file
Casey eb62fc0241
Added support for Braille mode in 1-bit palette
2022-08-15 19:00:39 +03:00
obj Ah shit, here we go again 2022-01-30 23:04:56 +03:00
src Added support for Braille mode in 1-bit palette 2022-08-15 19:00:39 +03:00
thirdparty Ah shit, here we go again 2022-01-30 23:04:56 +03:00
.gitignore Fixed issue with 256 colors palette 2022-02-05 20:11:21 +03:00
.gitmodules Ah shit, here we go again 2022-01-30 23:04:56 +03:00
.oclint OCLint fixes and some housekeeping stuff 2022-02-04 15:48:21 +03:00
LICENSE License stuff and proper README. And renaming 2022-02-03 23:46:56 +03:00
Makefile Added gradient (charmap) module and other stuff 2022-02-08 21:19:00 +03:00
README.md It should be PREFIX, not INSTALL_PATH 2022-02-07 12:34:57 +03:00

README.md

YAITAA - Yet Another Image To A(NSI) Art (converter)

Codacy Badge

Yes, very original. Old name is asciify-reborn for reasons stated bellow

Reasons for reimplementation

Everything is already described in hatkidchan/asciify, but just as recap:

  1. I'm not happy with old project structure
  2. Some new features may be pain in the ass to add
  3. Spaghetti code
  4. Literally dublication
  5. Separate binaries for each mode
  6. Git submodules. Yay.

Build instructions

1. Make sure that you have C compiler and make

cc --version && make --version && echo 'ok'

Both of commands should succeed.

2. Clone repo

git clone --recursive https://github.com/hatkidchan/yaitaa
cd yaitaa

2. Build it

make

3. Run it

./yaitaa -M braille -S 256 -W 80 -H 24 ~/images/kitty.png

Build end notes

1. It is preferred to use clang as your compiler

Main reason being that it is more strict, so any issues I've missed may be reported on that step. Feel free to send them to me!

CC=clang make

2. Strip binary to reduce size (saves ~100KiB)

strip ./yaitaa

3. Installation

# as root
make install # Will install it to /bin/

Alternatively, you can install it to your local user directory, if it's in your $PATH:

make install PREFIX=$HOME/.local/ # will install it to $HOME/.local/bin/

License

yaitaa - Yet Another Image To A(NSI) Art (converter)
Copyright (C) 2022 hatkidchan <hatkidchan at gmail dot com>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.