Skip to main content

Colorbar in Python. Fast and lightweight!

Project description

colorbar

Add a colorbar to an image in milliseconds (faster than plt.imshow+plt.colorbar) 💨

colorbar achieves its speed by avoiding matplotlib and instead using numpy, pillow, cmap and pycairo!

🛠️ Install via: pip install colorbar (+ if pycairo causes trouble try conda install anaconda::pycairo)

Usage 💡

import numpy as np
from colorbar import CBar

shape = (400, 800)
im = np.linspace(0, 1, shape[0] * shape[1]).reshape(*shape)  # dummy image
cbar = CBar(cmap='gray',    # see https://cmap-docs.readthedocs.io/en/latest/catalog/
            vmin=im.min(),  # pixels <= vmin become first color of cmap
            vmax=im.max())  # pixels >= vmax become last color of cmap
im_cbar = cbar.draw(im)  # draw colorbar!
im_cbar.show()

cbar

draw() returns a PIL.Image that is shown via show() and saved via save()

im_cbar.save('cbar.png')

Use cbar.save() instead of im=cbar.draw()+im.save() to save the image as a vector graphic

...
cbar.save('cbar.pdf', im)  # .pdf, .svg, .ps or .eps

To customize the colorbar, draw() and save() take the arguments:

  • vertical: If True, colorbar is vertical. Default: True
  • pad: Added pixel rows on the colorbar-side of the image. Default: 0
  • pad_color: Color-string of added pixels. Default: 'k'(=black)
  • x: Position of the colorbar center relative to image in width-direction. Default: .9
  • y: Position of the colorbar center relative to image in length-direction. Default: .5
  • width: Size of the colorbar relative to image. Default: .05
  • length: Size of the colorbar relative to image. Default: .8
  • label: Label above the colorbar. Default: None
  • ticks: List (e.g. [0, 1]) or dict (e.g. {0: 'low', 1: 'high'}) of ticks. Default: None
  • fontsize: Fontsize of labels and ticks. Default: 20
  • linecolor: Color of the lines and the font used to write labels and ticks. Default: w(=white)
  • linewidth: Width of ticklines and outlines. Default: 2
  • tick_len: Length of ticklines. Default: 2

Finally, if you want draw() to return a numpy array use asarray=True

im_cbar = cbar.draw(im, asarray=True)

to e.g. plot it with matplotlib via plt.imshow(im_cbar).

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

colorbar-0.1.1.tar.gz (389.0 kB view details)

Uploaded Source

Built Distribution

colorbar-0.1.1-py3-none-any.whl (387.7 kB view details)

Uploaded Python 3

File details

Details for the file colorbar-0.1.1.tar.gz.

File metadata

  • Download URL: colorbar-0.1.1.tar.gz
  • Upload date:
  • Size: 389.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.14 Linux/5.15.0-56-generic

File hashes

Hashes for colorbar-0.1.1.tar.gz
Algorithm Hash digest
SHA256 eea74e6339735071a0c4c0cc9589e0d7f5eefaaa514396d6096691db6bf4ea17
MD5 bfb69b2d9151bcb0406010eed252dada
BLAKE2b-256 27e37b6b816f6ecdeef75e86ba3da47af4f692e865781e0508a4e7905cb7d7d0

See more details on using hashes here.

File details

Details for the file colorbar-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: colorbar-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 387.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.14 Linux/5.15.0-56-generic

File hashes

Hashes for colorbar-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 24e8fdf50c0390781ff6eda1599e51c387d64d1b015ef13029abf2560bcbb20b
MD5 4497f9a70a0fca392dc34448e9555d15
BLAKE2b-256 e59ac893dd3dac2619d13255bf4f87724cd7dd6e9d410e74a103705c5e375d57

See more details on using hashes here.

Supported by

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