IImageExporter
public interface IImageExporter
The image exporter. Can export data from internal Aspose.Imaging format to a specified data format.
Methods
Method | Description |
---|---|
export(Image image, OutputStream stream, ImageOptionsBase optionsBase) | Exports the specified image data into specified data format. |
export(Image image, OutputStream stream, ImageOptionsBase optionsBase, Rectangle boundsRectangle) | Exports the specified image data into specified data format. |
export(Image image, OutputStream stream, ImageOptionsBase optionsBase)
public abstract void export(Image image, OutputStream stream, ImageOptionsBase optionsBase)
Exports the specified image data into specified data format.
Parameters:
Parameter | Type | Description |
---|---|---|
image | Image | The image data to export. |
stream | java.io.OutputStream | The stream to export data to. |
optionsBase | ImageOptionsBase | Options for image export |
export(Image image, OutputStream stream, ImageOptionsBase optionsBase, Rectangle boundsRectangle)
public abstract void export(Image image, OutputStream stream, ImageOptionsBase optionsBase, Rectangle boundsRectangle)
Exports the specified image data into specified data format.
Parameters:
Parameter | Type | Description |
---|---|---|
image | Image | The image data to export. |
stream | java.io.OutputStream | The stream to export data to. |
optionsBase | ImageOptionsBase | Options for image export |
boundsRectangle | Rectangle | The bounds rectangle. |