An open API service indexing awesome lists of open source software.

https://github.com/ar90n/teimpy

Python library for displaying image on terminal.
https://github.com/ar90n/teimpy

console console-tool image my-projects terminal-graphics

Last synced: 4 months ago
JSON representation

Python library for displaying image on terminal.

Awesome Lists containing this project

README

          

# teimpy
Python library for displaying image on terminal.

[![Actions Status](https://img.shields.io/github/actions/workflow/status/ar90n/teimpy/workflow.yml)](https://github.com/ar90n/teimpy/actions/workflows/workflow.yml)
[![PyPI version](https://badge.fury.io/py/teimpy.svg)](https://badge.fury.io/py/teimpy)
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/amplify-education/serverless-domain-manager/master/LICENSE)

## Installation

```bash
$ pip
```

## Example

```python
import numpy as np
from teimpy import get_drawer, Mode

R = np.array([1.0, 0, 0])
G = np.array([0, 1.0, 0])
B = np.array([0, 0, 1.0])

def _get_color(x, y):
tmp = (y * (1.0 - x) * R + (1.0 -y ) * x * G + (1.0 - y) * (1.0 - x) * B)
return (255 * tmp).astype(np.uint8)

tics = np.linspace(0, 1, 128)
xs, ys = np.meshgrid(tics, tics)
buffer = np.vectorize(_get_color, signature='(),()->(3)')(xs, ys)
print(get_drawer(Mode.ITERM2_INLINE_IMAGE).draw(buffer))
```
![Result of doit.py](https://github.com/ar90n/teimpy/raw/docs/doit.png)

## Feature

* Resize images to fit terminal size.
* Drawing with iterm2 inline image.
![Drawing with iterm2 inline image](https://github.com/ar90n/teimpy/raw/docs/inline_image.png)
* Drawing with Braille fonts.
![Drawing with Braille ofnts](https://github.com/ar90n/teimpy/raw/docs/braille.png)
* Drawing with half block fonts.
![Drawing with half block fonts](https://github.com/ar90n/teimpy/raw/docs/half_block.png)

## License
This software is released under the MIT License, see [LICENSE](LICENSE).