Skip to content

realstealthninja/texto

Repository files navigation

Texto

Your one-stop shop for all things related to ascii.

texto-logo

Texto is supposed to be an ASCII based renderer.

License Last commit Repository size build

Table of contents

Installation

Gitpod

By using Gitpod, you can skip all the steps which automatically installs all the necessary dependencies and builds the code.

Open in Gitpod

Locally

  1. Clone the Git repository and its submodules.
git clone --recursive https://github.com/realstealthninja/texto.git
  1. 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

  1. 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.

Usage

./texto <PATH-TO-FILE> <COLOURSPACE>

Want to contribute?

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.