save method

save

Saves the image to the file.

def save(self, file_path):
    ...
Parameter Type Description
file_path System.String The path to the file.

Example

The following example shows how to save images to files:

save

Saves the image to the file in a different format.

def save(self, file_path, options):
    ...
Parameter Type Description
file_path System.String The path to the file.
options groupdocs.parser.options.ImageOptions The options which are used to save the image.

Example

The following example shows how to save images to files in a different format:

See Also