Gimp.dodgeburn_default
@accepts(Gimp.Drawable, int, [float])
@returns(bool)
def dodgeburn_default(drawable, num_strokes, strokes):
# Python wrapper for gimp_dodgeburn_default()
Dodgeburn image with varying exposure. This is the same as the Gimp.dodgeburn function except that the exposure, type and mode are taken from the tools option dialog. If the dialog has not been activated then the defaults as used by the dialog will be used.
Dodgeburn. More details here later.
- drawable
The affected drawable.
- num_strokes
Number of stroke control points (count each coordinate as 2 points).
- strokes
Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }.
- Returns