Gimp.clone
@accepts(Gimp.Drawable, Gimp.Drawable, Gimp.CloneType, float, float, int, [float])
@returns(bool)
def clone(drawable, src_drawable, clone_type, src_x, src_y, num_strokes, strokes):
# Python wrapper for gimp_clone()
Clone from the source to the dest drawable using the current brush
This tool clones (copies) from the source drawable starting at the specified source coordinates to the dest drawable. If the \"clone_type\" argument is set to PATTERN-CLONE, then the current pattern is used as the source and the \"src_drawable\" argument is ignored. Pattern cloning assumes a tileable pattern and mods the sum of the src coordinates and subsequent stroke offsets with the width and height of the pattern. For image cloning, if the sum of the src coordinates and subsequent stroke offsets exceeds the extents of the src drawable, then no paint is transferred. The clone tool is capable of transforming between any image types including RGB->Indexed--although converting from any type to indexed is significantly slower.
- drawable
The affected drawable.
- src_drawable
The source drawable.
- clone_type
The type of clone.
- src_x
The x coordinate in the source image.
- src_y
The y coordinate in the source image.
- 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