Wrappers to simplify GEGL usage with python
Project description
Python lithweight wrapper for using GEGL - Generic Graphics Library (http://www.gegl.org)
Currently working for Python2 and Python3
Justificative
In the past, there were custom Python bindings for GEGL on the library source tree itself. However, that code bit-rot and was removed, with the introduction of gobject introspection, automatic bindings for several languages - Python included - could be generated.
The problem with the automatic bindings for GEGL is that although usable, one has to do a lot of typing and copying around to be able to leverage on the introspection capabilities of Gobject and of GEGL itself.
This project ains to add some custom Python code that makes it more “pythonic” to make full use of GEGL.
The file “snippets.py” contains an example of using GEGL thorugh raw gobject introspection - you don’t need this project installed at all to use code like that.
With this installed, even in this early stage, the following statements are enough to create and execute the same GEGL graph used in “snippets.py”:
>>> import gegl >>> x = gegl.Graph("png-load", "invert", "png-save") >>> x[0].path = "/home/gwidion/bla.png" >>> x[0] OpNode('gegl:png-load') >>> x[2].path = "/home/gwidion/bla2.png" >>> >>> x() >>>
Prerequisites
You will need a working GEGL with Gobject introspection installed, and pygobject. This comes out of the box with proper install of GEGL and gobject introspection: works in Fedora 20 (late 2013) and possibly other recent distributions as of 2014.
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
File details
Details for the file python-gegl-0.2.1.tar.gz
.
File metadata
- Download URL: python-gegl-0.2.1.tar.gz
- Upload date:
- Size: 15.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d137fc1d496d765e7de149395ea12aaed553283af2202d4166ce703d440881a |
|
MD5 | 7338d2464390bfc8a740c45710672ff0 |
|
BLAKE2b-256 | a7ef4704f6edf712a85026fc0089a965ad08c3929fb2869fa78243c64d9e74cf |