Gimp.Vectors.export_to_file
@accepts(Gimp.Image, Gio.File, Gimp.Vectors)
@returns(bool)
def export_to_file(image, file, vectors):
# Python wrapper for gimp_vectors_export_to_file()
save a path as an SVG file.
This procedure creates an SVG file to save a Vectors object, that is, a path. The resulting file can be edited using a vector graphics application, or later reloaded into GIMP. Pass None as the 'vectors' argument to export all paths in the image.
Since 2.6
- image
The image.
- file
The SVG file to create.
- vectors
The vectors object to export, or None for all in the image.
- Returns