Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing PyGIMP on Windows

On the web, I can find various example on gimp scripting with python.

http://www.jamesh.id.au/software/pygimp/ http://www.gimp.org/docs/python/pygimp.html

We need to import the gimpfu module to get the examples to work. Where can we get the installer of PyGIMP on Windows? It seems the project is dead and the links are broken.

like image 217
Speccy Avatar asked Jan 29 '13 21:01

Speccy


1 Answers

In order to develop Gimp scripts using Python-fu I have followed gimp users article, In short you need to download & install the following:

  1. Python 32-bit from here.
  2. All in one 32-bit from here.
  3. Gimp 2.6 32-bit from here.

Then you need to create your-plugin.py file in C:\Users\MyUsername.gimp-2.6\plug-ins

P.S: Restart your gimp after adding code or modifying your register() function in order to take effect each time.

like image 168
Mahdi Alkhatib Avatar answered Sep 28 '22 18:09

Mahdi Alkhatib