save method
save
Saves the document to local file specified by url
. All resources used in this document will be saved in
to adjacent folder, whose name will be constructed as: output_file_name + “_files”.
If the specified url
ends with “.svgz”, the document will be saved as a compressed SVGZ file.
Parameter | Type | Description |
---|
url | Url | Local URL to output file. |
Exceptions
Exception | Description |
---|
ArgumentException | Raised if the specified url is not a valid local file URL. |
save
Saves the document to local file specified by path
. All resources used in this document will be saved in
to adjacent folder, whose name will be constructed as: output_file_name + “_files”.
def save(self, path):
...
Parameter | Type | Description |
---|
path | str | Local path to output file. |
Exceptions
Exception | Description |
---|
ArgumentException | Raised if the specified path is not a valid local file path. |
save
Saves the document content and resources using the ResourceHandler
.
def save(self, resource_handler):
...
Parameter | Type | Description |
---|
resource_handler | aspose.svg.saving.resourcehandlers.ResourceHandler | The resource handler ResourceHandler . |
Saves the document to local file specified by path
. All resources used in this document will be saved in
to adjacent folder, whose name will be constructed as: output_file_name + “_files”.
def save(self, path, save_format):
...
Parameter | Type | Description |
---|
path | str | Local path to output file. |
save_format | aspose.svg.saving.SVGSaveFormat | Format in which document is saved. |
Exceptions
Exception | Description |
---|
ArgumentException | Raised if the specified path is not a valid local file path. |
Saves the document content and resources using the ResourceHandler
.
def save(self, resource_handler, save_format):
...
Parameter | Type | Description |
---|
resource_handler | aspose.svg.saving.resourcehandlers.ResourceHandler | The resource handler ResourceHandler . |
save_format | aspose.svg.saving.SVGSaveFormat | Format in which document is saved. |
save
Saves the document to local file specified by path
. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + “_files”. If the specified path
ends with “.svgz”, the document will be saved as a compressed SVGZ file.
def save(self, path, save_options):
...
Parameter | Type | Description |
---|
path | str | Local path to output file. |
save_options | aspose.svg.saving.SVGSaveOptions | SVG save options. |
save
Saves the document content and resources using the ResourceHandler
.
def save(self, resource_handler, save_options):
...
Parameter | Type | Description |
---|
resource_handler | aspose.svg.saving.resourcehandlers.ResourceHandler | The resource handler ResourceHandler . |
save_options | aspose.svg.saving.SVGSaveOptions | SVG save options. |
Saves the document to local file specified by url
. All resources used in this document will be saved in
to adjacent folder, whose name will be constructed as: output_file_name + “_files”.
def save(self, url, save_format):
...
Parameter | Type | Description |
---|
url | Url | Local URL to output file. |
save_format | aspose.svg.saving.SVGSaveFormat | Format in which document is saved. |
Exceptions
Exception | Description |
---|
ArgumentException | Raised if the specified url is not a valid local file URL. |
save
Saves the document to local file specified by url
. All resources used in this document will be saved in
to adjacent folder, whose name will be constructed as: output_file_name + “_files”.
If the specified url
ends with “.svgz”, the document will be saved as a compressed SVGZ file.
def save(self, url, save_options):
...
Parameter | Type | Description |
---|
url | Url | Local URL to output file. |
save_options | aspose.svg.saving.SVGSaveOptions | SVG save options. |
Exceptions
Exception | Description |
---|
ArgumentException | Raised if the specified url is not a valid local file URL. |
Saves the document content and associated resources to the specified file path.
def save(self, path, save_format, save_options):
...
Parameter | Type | Description |
---|
path | str | The file path where the document will be saved. |
save_format | aspose.svg.saving.SVGSaveFormat | The format in which the document should be saved. |
save_options | aspose.svg.saving.SVGSaveOptions | Options specifying additional parameters for saving, such as vectorization preferences. |
Saves the document content and associated resources using the specified ResourceHandler
.
def save(self, resource_handler, save_format, save_options):
...
Parameter | Type | Description |
---|
resource_handler | aspose.svg.saving.resourcehandlers.ResourceHandler | The resource handler to manage document resources, such as file system or memory-based storage. |
save_format | aspose.svg.saving.SVGSaveFormat | The format in which the document should be saved. |
save_options | aspose.svg.saving.SVGSaveOptions | Options that specify additional saving parameters, such as vectorization preferences. |
Saves the document content and associated resources to the specified Url
.
def save(self, url, save_format, save_options):
...
Parameter | Type | Description |
---|
url | Url | The target Url where the document will be saved. |
save_format | aspose.svg.saving.SVGSaveFormat | The format in which the document should be saved. |
save_options | aspose.svg.saving.SVGSaveOptions | Options specifying additional parameters for saving, such as vectorization preferences. |
See Also