Skip to main content

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()

example0

    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()

example1

    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()

example2

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

image_jointer-2.1.tar.gz (7.8 kB view details)

Uploaded Source

Built Distribution

image_jointer-2.1-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

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

Hashes for image_jointer-2.1.tar.gz
Algorithm Hash digest
SHA256 cb5bf4dad6b662403af45d30e937eebe95c682a85929654eddaa13822703812a
MD5 bbabfd91597ed66146ad383f31bb5ff2
BLAKE2b-256 10633578daed9efbde51aa472fde55b1b0db717922fd55833b03669c2cb1f232

See more details on using hashes here.

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

Hashes for image_jointer-2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c2f188adffa44e1d6584f40140b871bddc8ada3bf393a866759ee39a214c8cb9
MD5 63cfcff32458598d5deba7912084ccd8
BLAKE2b-256 1a8f6261234eeca56cefc8e8441013065f9b2e084b185dd6b6da6b0d0fc2621f

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