Skip to content

Repository files navigation

chafa.py

Terminal graphics with Python!

📙 Docs - 🌱 Tutorial - 💾 Examples

PyPIGitHub Workflow StatusSneks

What is this?

Have you ever wanted to display an image in your TUI Python application? Well, now you can!

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 cool Python applications! The chafa.py library tries to be intuitive and aims to produce very readable code.

Features include:

  • ⚡ Modern and intuitive Python API
  • 📖 Extensive documentation and a tutorial
  • 📟 Generate text based approximations of images in (almost) any terminal emulator
  • 6️⃣ Sixels, 😸 Kitty and 🍎 ITerm2 image protocols support
  • 🐧 Linux, 🍎 MacOS (x86 and ARM), 🪟 Windows support

Example

Here is a picture of a cute snake rendered to text using chafa.py:

✏️ Code

For more examples, head on over to the docs at chafapy.mage.black.

fromchafaimport*fromchafa.loaderimportLoader# The font ratio of JetBrains Mono (width/height)FONT_RATIO=11/24# Create a canvas configconfig=CanvasConfig()
# Configure the canvas geometryconfig.width=40config.height=40# Load the snakeimage=Loader("./snake.jpg")
# Configure the ideal canvas geometry based on our FONT_RATIOconfig.calc_canvas_geometry(
image.width,
image.height,
FONT_RATIO
)
# Init the canvascanvas=Canvas(config)
# Draw to the canvscanvas.draw_all_pixels(
image.pixel_type,
image.get_pixels(),
image.width, image.height,
image.rowstride
)
# Print the outputoutput=canvas.print()
print(output.decode())

Where can I get it?

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

pip install chafa.py

If you want to use the included Loader class to load images, you will also need to install MagickWand.

Dependencies

  • Python 3.8 or later

Optional Dependencies

📬 P.S. The snakes don't bite (I think...) 🐍🐍🐍🐍🐍

About

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

Topics

Resources

Stars

121 stars

Watchers

3 watching

Forks

Releases

Used by

Contributors

Languages