Build up image by jointing images
Project description
ImageJointer
Build up image by jointing images
install
pip install image_jointer
how to use
from image_jointer import JointAlignment, ImageJointer
from PIL import Image
red = Image.new("RGBA", (50, 50), (255, 0, 0))
green = Image.new("RGBA", (100, 100), (0, 255, 0))
blue = Image.new("RGBA", (50, 50), (0, 0, 255))
jointed = ImageJointer().joint(JointAlignment.RIGHT_CENTER, red, green, blue)
joint_img = jointed.to_image()
from image_jointer import JointAlign, ImageJointer, Blank
from PIL import Image
red = Image.new("RGBA", (100, 100), (255, 0, 0))
blank = Blank(50, 100)
green = Image.new("RGBA", (100, 100), (0, 255, 0))
jointed = (
ImageJointer(red)
.joint(blank, JointAlign.RIGHT_CENTER)
.joint(green, JointAlign.RIGHT_CENTER)
)
joint_img = jointed.to_image()
from image_jointer import JointAlignment, ImageJointer
from PIL import Image
red = Image.new("RGBA", (100, 100), (255, 0, 0))
blue = Image.new("RGBA", (100, 200), (0, 0, 255))
green = Image.new("RGBA", (100, 100), (0, 255, 0))
jointed = ImageJointer(red).joint(JointAlignment.LEFT_BOTTOM, blue).joint(JointAlignment.DOWN_CENTER, green)
joint_img = jointed.to_image()
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
image_jointer-2.1.tar.gz
(7.8 kB
view details)
Built Distribution
File details
Details for the file image_jointer-2.1.tar.gz
.
File metadata
- Download URL: image_jointer-2.1.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb5bf4dad6b662403af45d30e937eebe95c682a85929654eddaa13822703812a |
|
MD5 | bbabfd91597ed66146ad383f31bb5ff2 |
|
BLAKE2b-256 | 10633578daed9efbde51aa472fde55b1b0db717922fd55833b03669c2cb1f232 |
File details
Details for the file image_jointer-2.1-py3-none-any.whl
.
File metadata
- Download URL: image_jointer-2.1-py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2f188adffa44e1d6584f40140b871bddc8ada3bf393a866759ee39a214c8cb9 |
|
MD5 | 63cfcff32458598d5deba7912084ccd8 |
|
BLAKE2b-256 | 1a8f6261234eeca56cefc8e8441013065f9b2e084b185dd6b6da6b0d0fc2621f |