Pystacia - image manipulation library for Python
Check out the new site at https://rkblog.dev.
27 November 2011
Comments
Pystacia is "yet another" image manipulation library for Python... but it has some advantages over other libs:
- Python API, expendable by subclassing
- Wide Python support - 2.5, 2.6, 2.7, 3.1, 3.2, PyPy and IronPython
- No compiler required, just "pip install pystacia"
- Works on 32 and 64 bit MS Windows, Linux and on Intel based OSX
- Inner 16-bit per channel precision
- Multithreaded processing on multiple cores
- MIT license
- ...and more ;)
import pystacia
image = pystacia.read('example.jpg')
image.rescale(320, 240)
image.write('output1.jpg')
image.rotate(30)
image.write('output2.jpg')
image.rescale(factor=2)
image.denoise()
image.emboss()
image.write('output3.jpg')
image.close()

RkBlog
Check out the new site at https://rkblog.dev.
Comment article