Skip to content
/ Zane2 Public

A python imaging library that eases the stress of using multiple image libraries.

License

Notifications You must be signed in to change notification settings

linKhehe/Zane2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zane2

A python imaging library that eases the stress of using multiple image libraries.

Example

import zane2
import skimage.transform

image = zane2.Image("image_in.png")

with image.edit(zane2.WandProxy) as proxy:
    proxy.implode(amount=1.35)

with image.edit(zane2.PILProxy) as proxy:
    proxy.resize((400, 400))

with image.edit(zane2.SkimageProxy) as proxy:
    # this is equal but used instead of proxy = swirl(image)
    proxy + skimage.transform.swirl(proxy)

image.save("image_out.png")

About

A python imaging library that eases the stress of using multiple image libraries.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages