layer effects
This script makes the exemplification layer effect which emulates old fashioned dramatic landscape photography.
Download the scripts. These layer effects work with decomposition layers and multiplification layers. The tarball contains both scripts.
def layer_effect_exemplification(image, drawable): pdb.gimp_image_undo_group_start(image) image, layer_value = pdb.python_fu_decompose_value_layer(image, drawable) image, layer_red = pdb.python_fu_decompose_to_layer_red(image, drawable) pdb.gimp_layer_set_mode(layer_red, MULTIPLY_MODE) pdb.gimp_equalize(layer_red, False) pdb.gimp_image_undo_group_end(image)