Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-gegl-0.2.1.tar.gz (15.5 kB view hashes)

Uploaded Source

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