Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Eyjafjallajokull/a3b85fecc552cb472d3a4eef48e82049 to your computer and use it in GitHub Desktop.
Save Eyjafjallajokull/a3b85fecc552cb472d3a4eef48e82049 to your computer and use it in GitHub Desktop.
gimp python scripting
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