nibble ( ˈnib(ə)l )
nibble is a CLI pixel font image generator, written in Rust.

Installation

# Install with cargo
cargo install --git https://github.com/retronbv/nibble

# Build from source
git clone https://github.com/retronbv/nibble.git
cd nibble
cargo build --release
# Resulting binary will be located at ./target/release/nibble

Usage

nibble "this is an example" -o example.png

Arguments

<text>         : The text to render in the image
-o --output    : The file to render to
-p --primary   : The primary color to render the text in
-s --secondary : The secondary (shadow) color to render the text in
--scale        : The factor to scale up the image at

Defaults

Primary color   : #ffffff (white)
Secondary color : #2a2a2a (dark gray)
Scale factor    : 1x
view on github