Gimp.Image.insert_vectors
@accepts(Gimp.Image, Gimp.Vectors, Gimp.Vectors, int)
@returns(bool)
def insert_vectors(self, vectors, parent, position):
# Python wrapper for gimp_image_insert_vectors()
Add the specified vectors to the image.
This procedure adds the specified vectors to the image at the given position. Since vectors groups are not currently supported, the parent argument must always be 0. The position argument specifies the location of the vectors inside the stack, starting from the top (0) and increasing. If the position is specified as -1, then the vectors is inserted above the active vectors.
- self
The image.
- vectors
The vectors.
- parent
The parent vectors.
- position
The vectors position.
- Returns