Convert images to unicode based on font templates. Especially usable in terminal.
Project description
img2unicode
A tool to display images as Unicode in your terminal. The library is currently optimized for Ubuntu Mono font rendered by libvte (Gnome Terminal, Terminator etc.) i.e. it works on stock Ubuntu.
pip install img2unicode
imgcat image.jpg
Usage
import img2unicode
# Use Unicode Block Elements
optimizer = img2unicode.FastGenericDualOptimizer("block")
renderer = img2unicode.Renderer(default_optimizer=optimizer, max_h=60, max_w=160)
renderer.render_terminal('examples/obama.jpg', 'obama-block.txt')
# Pair Renderer to Optimizer
optimizer = img2unicode.FastGammaOptimizer("no_block")
renderer = img2unicode.GammaRenderer(default_optimizer=optimizer, max_h=60, max_w=160)
renderer.render_terminal('examples/obama.jpg', 'obama-noblock.txt')
pil_image = renderer.prerender('examples/obama.jpg')
pil_image.save('obama-rendered.png')
# Use own mask: it may be name from common masks (see source), slice or numpy bool array.
ascii_optimizer = img2unicode.FastGammaOptimizer(slice(32, 127), use_color=False)
# Get the characters, foreground and background colors. Use non-default optimizer.
chars, fores, backs = renderer.render_numpy('examples/obama.jpg', optimizer=ascii_optimizer)
Optimizers
Here is a quick comparison of the most usable optimizers:
FastQuadDualOptimizer() | FastGenericDualOptimizer ("block") | FastGammaOptimizer (charmask="no_block") | FastGammaOptimizer (charmask="no_block", use_color=False) |
---|---|---|---|
Choses from 4-pixel characters like ▚ | Optimizes foreground/background for whole Unicode Block Elements. | Optimizes foreground color for all Unicode rendered in single cell. | Same, but does't use terminal colors. |
Good color representation | Good color and crisper image | Crisp edges with black | Pure art, no color. |
Foreground & background | Foreground & background | Just foreground | No color |
~5Hz | ~4Hz | ~1Hz | ~2Hz |
O(S*T), T=7 | O(S*T), T=24 | O(S*log(T)), T=5553 | O(S*log(T)), T=5553 |
Where S
is the number of 16x8 pixel samples to optimize for and T
is the number of templates.
See it yourself
Use the included termview
script to browse images with all renderers:
termview examples/obama.jpg
or use imgcat
to display an image in your terminal:
imgcat examples/obama.jpg
More samples
To see how other optimizers compare to each other, see examples/README.md.
To see more eyecandy of photos, videos and plots, see the matrach/img2unicode-deoms repo
TODO
- write more docs, document code
- describe how it works in readme
- solve foreground & background optimization sublinear in templates
- add support for Unicode 13 Legacy Computing block
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file img2unicode-0.1a6.tar.gz
.
File metadata
- Download URL: img2unicode-0.1a6.tar.gz
- Upload date:
- Size: 19.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.29.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d74bfe2d9a2e6d7a7bee92f60898a92484abb06e816b3f29385ef6e74a6015a6 |
|
MD5 | 43bfde061ca5fbdad124fadb34b0f7a4 |
|
BLAKE2b-256 | ad0870662db4108cd09573aec557b5752cb6d7c7d36d94b544500c4b9b87a16b |
File details
Details for the file img2unicode-0.1a6-py3-none-any.whl
.
File metadata
- Download URL: img2unicode-0.1a6-py3-none-any.whl
- Upload date:
- Size: 19.8 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.29.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34823802e801c550effd233938b2def2191ab7fd90e2e308acfa2c8b3c27c417 |
|
MD5 | 2a27bd00289cbfb84ad46e5640a4b64e |
|
BLAKE2b-256 | 496106dda53b6e7e42f4a8b3edeb391b88eff9f427247bb0e2854f2f6ad9fec0 |