Myriad Utilities
Project description
This package is a collection of utilities that I find myself using across the various projects I've worked on in the past. Some have been extracted from packages, some from blog posts / stack overflow solutions, and some my own. Wherever possible, I have cited the source. Please do let me know if I missed out
Enable math like operations for joining PIL Images
from upyog.image import *
img1 = Image.open(...)
img2 = Image.open(...)
horizontal_join = img1 | img2
vertical_join = img1 // img2
To do this over a list of images, use:
img_join_horizontal(img_list)
img_join_vertical(img_list)
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
upyog-0.5.4.tar.gz
(43.9 kB
view hashes)
Built Distribution
upyog-0.5.4-py3-none-any.whl
(29.0 kB
view hashes)