Save
Contents
[
Hide
]Save(string)
Saves the image to a file.
public void Save(string filename)
Parameter | Type | Description |
---|---|---|
filename | String | The path to the file where the image will be saved. |
See Also
- interface IImage
- namespace Aspose.Slides
- assembly Aspose.Slides
Save(string, ImageFormat)
Saves the image to a file in the specified format.
public void Save(string filename, ImageFormat format)
Parameter | Type | Description |
---|---|---|
filename | String | The path to the file where the image will be saved. |
format | ImageFormat | The image format. |
See Also
- enum ImageFormat
- interface IImage
- namespace Aspose.Slides
- assembly Aspose.Slides
Save(Stream, ImageFormat)
Saves the image to a stream in the specified format.
public void Save(Stream stream, ImageFormat format)
Parameter | Type | Description |
---|---|---|
stream | Stream | The stream where the image will be saved. |
format | ImageFormat | The image format. |
See Also
- enum ImageFormat
- interface IImage
- namespace Aspose.Slides
- assembly Aspose.Slides
Save(string, ImageFormat, int)
Saves the image to a file in the specified format and quality.
public void Save(string filename, ImageFormat format, int quality)
Parameter | Type | Description |
---|---|---|
filename | String | The path to the file where the image will be saved. |
format | ImageFormat | The image format. |
quality | Int32 | The quality of the saved image (0 to 100). This parameter only affects saving in Jpeg; for all other formats, it is ignored. |
See Also
- enum ImageFormat
- interface IImage
- namespace Aspose.Slides
- assembly Aspose.Slides
Save(Stream, ImageFormat, int)
Saves the image to a stream in the specified format and quality.
public void Save(Stream stream, ImageFormat format, int quality)
Parameter | Type | Description |
---|---|---|
stream | Stream | The stream where the image will be saved. |
format | ImageFormat | The image format. |
quality | Int32 | The quality of the saved image (0 to 100). This parameter only affects saving in Jpeg; for all other formats, it is ignored. |
See Also
- enum ImageFormat
- interface IImage
- namespace Aspose.Slides
- assembly Aspose.Slides