Writing Plugins for GIMP in Python
Apr 09, 2009, 17:04 (0 Talkback[s])
(Other stories by Akkana Peck)
"Have you ever wished you could automate a few functions in
GIMP? Today's article will show you how to use Python to write
simple GIMP plug-ins...
"GIMP-Python scripts live under your home directory, in
.gimp-2.6/plug-ins/. If you're using a different GIMP version, like
2.4 or 2.7, change the name appropriately. So edit a file there --
for example, $HOME/.gimp-2.6/plug-ins/pytest -- and start with the
following headers:
#!/usr/bin/env python
"from gimpfu import *"
Complete
Story
Related Stories:
- Python HowTo: Find the port on a switch that a host belongs to(Apr 08, 2009)
- Charming Python: Distributing computing with RPyC(Apr 06, 2009)
- Getting Started With the Kate Text Editor: Kate For Coders(Apr 02, 2009)
- The current state and future of Python(Mar 31, 2009)
- GUI Programming in Python For Beginners: Create a Timer in 30 Minutes(Mar 26, 2009)
- Multiprocessing with Python(Mar 26, 2009)
- Intro to Shell Programming: Writing a Simple Web Gallery(Mar 12, 2009)
- The Linux CLI for Beginners, or, Fear Not the Linux Command Line!(Dec 12, 2008)
- Why Firefox Rocks: Great Firefox Tricks, Part IV(Nov 20, 2008)
- Why Firefox Rocks on Linux: Great Firefox Tricks, Part III(Nov 06, 2008)
- Quick Firefox Tip: Word Count Bookmarklet(Nov 06, 2008)
- Roll Your Own Custom Bookmarklets In Firefox, part 2(Oct 23, 2008)
- Stupid Firefox Tricks, Part I(Oct 09, 2008)