Your one-stop shop for all things related to ascii.
Texto is supposed to be an ASCII based renderer.
By using Gitpod, you can skip all the steps which automatically installs all the necessary dependencies and builds the code.
- Clone the Git repository and its submodules.
git clone --recursive https://github.com/realstealthninja/texto.git
- Install dependencies (Unix/Linux).
sudo apt-get update && sudo apt-get install ninja-build libopencv-dev
Note:
Ninja Build and OpenCV are also available for MacOs and Windows. Check out their binary releases. https://github.com/opencv/opencv/releases https://github.com/ninja-build/ninja/releases
- Build with CMake.
cmake -DCMAKE_BUILD_TYPE=Release -G Ninja -S ./ -B ./cmake-build-release
cmake --build ./cmake-build-release --target texto -j 1
Currently, Texto does not offer a prebuilt package. but it doesn't take a lot to compile.
You can also run build.sh
, which runs the exact same commands above.
./texto <PATH-TO-FILE> <COLOURSPACE>
Great!
First off all thank you for even considering contributing. You can start by reading the Code of Conduct and contributing guidelines (TODO).Please do raise an issue before opening a pull request discussing on how you are implementing the feature.