Skip to main content

Python bindings for Chafa. Visualize images with text in python.

Project description

Chafa.py

The snakes don't bite! (I think...)

Docs | Tutorial | Examples

What is this?

Chafa is a wonderful command-line utility, created by Hans Petter Jansson, for visualizing images in the terminal. In Jansson's own words:

The future is (still) now!

The premier UX of the 21st century just got a little better: With chafa, you can now view very, very reasonable approximations of pictures and animations in the comfort of your favorite terminal emulator. The power of ANSI X3.64 compels you!

chafa.py is a python wrapper for the chafa library so you can use rad graphics in your (undoubtedly pretty cool) Python applications!

chafa.py tries to be very pythonian (I think that's a word) in the sense that most getter and setter functions are simply made to be attributes of Python objects.

How do I get it?

First, you will need to install chafa <https://hpjansson.org/chafa/download/>_. This should be fairly straight forward since chafa packages are available for most linux distributions.

.. currentmodule:: chafa.loader

If you want to use the included :py:class:Loader class to load images for using with chafa.py, you will also need the MagickWand <https://imagemagick.org/script/magick-wand.php>_ C-library.

From PyPi

Chafa.py is available on PyPi. You can install it by running

pip install chafa.py

From source

If you want, you can install and play around with this package by cloning the repo and building it yourself

python -m build

in the root of the repository. This will build a distribution file in a new folder: dist/ called something like chafa-[version].gz. You can then install this file with pip by running

pip install ./dist/chafa-[version].tar.gz

Dependencies

Example

Here is the example program from the Chafa C API docs written in chafa.py. Take a look at the examples page in the docs for more cool examples, including how to load your images from files.

from chafa import *
from array import array

PIX_WIDTH  = 3
PIX_HEIGHT = 3
N_CHANNELS = 4

# Initiate pixels array ('B') for 8 bit values
pixels = array("B", [
    0xff, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff,
    0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff,
    0xff, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff
])

# Specify which symbols we want
symbol_map = SymbolMap()
symbol_map.add_by_tags(SymbolTags.CHAFA_SYMBOL_TAG_ALL)

# Set up a configuration with the symbols and the canvas size in characters
config = CanvasConfig()

config.width  = 23
config.height = 12

config.set_symbol_map(symbol_map)

# Create the canvas
canvas = Canvas(config)

# Draw pixels and build string
canvas.draw_all_pixels(
    PixelType.CHAFA_PIXEL_RGBA8_UNASSOCIATED,
    pixels,
    PIX_WIDTH,
    PIX_HEIGHT,
    N_CHANNELS * PIX_WIDTH
)

output = canvas.print().decode()

print(output)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chafa.py-1.0.0-1.tar.gz (1.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chafa.py-1.0.0-1-py3-none-any.whl (31.2 kB view details)

Uploaded Python 3

File details

Details for the file chafa.py-1.0.0-1.tar.gz.

File metadata

  • Download URL: chafa.py-1.0.0-1.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.28.1 requests-toolbelt/0.9.1 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/5.0.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.9

File hashes

Hashes for chafa.py-1.0.0-1.tar.gz
Algorithm Hash digest
SHA256 43a2118faafb69f28bd904a27435372a3f231f6e821d891edd88a4248a03c167
MD5 241ceb695ba38a83d9f087279ba34ba9
BLAKE2b-256 3de2c8a1cc3894d0b51fd445ee1aa4276e5125ddb06dfc3b5ac4d1c7e8b6a260

See more details on using hashes here.

File details

Details for the file chafa.py-1.0.0-1-py3-none-any.whl.

File metadata

  • Download URL: chafa.py-1.0.0-1-py3-none-any.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.28.1 requests-toolbelt/0.9.1 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/5.0.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.9

File hashes

Hashes for chafa.py-1.0.0-1-py3-none-any.whl
Algorithm Hash digest
SHA256 cd57ec62d29567fcfb78eb138161a5e2f8c213ed2133a46e4ad9f60d6589e722
MD5 a008ec6af09b1d82bb207771388d559c
BLAKE2b-256 3db8a795e28145e29cb13047739fd855bf60f2e61cc0ebdb24169758590d5de3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page