Created
August 15, 2016 07:35
-
-
Save Eyjafjallajokull/a3b85fecc552cb472d3a4eef48e82049 to your computer and use it in GitHub Desktop.
gimp python scripting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image = gimp.image_list()[0] | |
>>> for layer in image.layers: | |
... layer.name = layer.name.replace("200ms", "100ms") | |
... | |
>>> for layer in image.layers: | |
... pdb.gimp_levels(layer, 0, 6, 211, 1.27, 0, 255) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment