This is a repository for useful GIMP scripts.
With the lockdown of registry.gimp.org, there is no live script repository (until I figure out what to do with the registry). For the time being, we can use this to share and work on helpful scripts.
-
sg-luminosity-masks.scm
<Image> → Filters → Generic → Luminosity Masks (saulgoode)
This is Saul Goodes original script based on work that Pat David had originally done porting Tony Kuypers Luminosity Masks to GIMP. -
patdavid-check-layer.scm
<Image> → Filters → Generic → Skin Check Layer...
This will create a blue-chanel view of the color image to help in identifying and fixing skin blemishes. From an idea by Calvin Hollywood, implementation in GIMP. -
patdavid-color-decompose_0.3.scm
<Image> → Colors → Generic → Color Decompose...
This will decompose an RGB image into each of the color decomposition modes, and keep the most useful for B&W conversions. This is script is referenced in the tutorial Digital B&W Conversion on www.gimp.org. -
gu-hillustrative.scm
<Image> → ScriptFu → hillustrative...
This applies a series of G'MIC filters that achieves the Highlight Bloom and Illustrative filter detailed in the tutorial. Make sure your G'MIC filters are up-to-date. The SCM file was authored by Sebastien Guyader.
The .scm files need to be placed into the "Scripts" folder of GIMP.
The easiest way to locate these folders (and to possibly add new locations) is to open GIMP, then navigate to:
Edit → Preferences
From there, go to: Folders → Scripts
The list of folders that GIMP will search for scripts is shown (two in this example).
The .scm files can either be placed in one of the listed directories or a new directory location can be added for GIMP to look for scripts (a better approach).
Using the ability shown above to add arbitrary, new folder locations to look for scripts, it's simple to get all of the scripts in this repository added to GIMP.
-
(If you haven't already) get git and install it.
-
Navigate to a good location to save these files. Git will want to clone repositories into a new directory under your current location, so I used my home folder (
C:\Users\patrickd
) here as an example (yours can be anywhere you want). -
Clone this repository (See 3a below if you don't have git):
C:\Users\patrickd> git clone https://github.com/pixlsus/GIMP-Scripts.git
You'll now have the repo on your path:
C:\Users\{USERNAME}\GIMP-Scripts\
3a. You can download the repository contents as a .zip file as well.
Then extract the contents to an appropriate folder for the step below.
-
Following the above example of adding a new directory for GIMP to search for scripts, add this new cloned directory.
Voilà!
To update all of the scripts quickly and easily, simply navigate back into the directory and run git pull
. This will download the latest versions of all the scripts for you.