Page 1 of 1

Wand: ctypes-based ImageMagick binding for Python

Posted: 2012-06-21T04:27:57-07:00
by dahlia
I glad to introduce Wand, a new Python binding of ImageMagick based on ctypes. It has several key features:
  • Pythonic and modern interfaces
  • Good documentation
  • Binding through ctypes (not C API) — we are ready to go PyPy!
  • Installation using pip or easy_install
You can easily install it from PyPI:

Code: Select all

$ easy_install Wand
Documentation/website: http://dahlia.github.com/wand/
PyPI: http://pypi.python.org/pypi/Wand
GitHub: https://github.com/dahlia/wand

Thank you!

Re: Wand: ctypes-based ImageMagick binding for Python

Posted: 2012-08-18T17:29:43-07:00
by dahlia
We just released Wand 0.2.1, the first beta version. You can find it from PyPI:

http://pypi.python.org/pypi/Wand/0.2.1

Plus, our website has moved:

http://dahlia.kr/wand/

Thanks!

Re: Wand: ctypes-based ImageMagick binding for Python

Posted: 2013-06-19T10:26:27-07:00
by dahlia
We released Wand 0.3.0. It’s the first version that works on Python 3, and contains several new features like sequence, drawing, and seam carving as well. Please read what’s new guide for this. It doesn’t cover all changes, so see also the full changelog if you need to check API-level changes.

You can install it from PyPI:

Code: Select all

$ pip install Wand==0.3.0
Thanks!