Uses of Class
com.aspose.imaging.SaveOptionsBase

Packages that use SaveOptionsBase
com.aspose.imaging   
com.aspose.imaging.interfaces   
com.aspose.imaging.saveoptions   
 

Uses of SaveOptionsBase in com.aspose.imaging
 

Methods in com.aspose.imaging with parameters of type SaveOptionsBase
 boolean Image.canSave(SaveOptionsBase saveOptions)
           Determines whether image can be saved to the specified file format represented by the passed save options.
static IImageExporter ImageExportersRegistry.createFirstSupportedExporter(Image image, SaveOptionsBase saveOptions)
           Creates the first found exporter suitable for the specified save options and image.
static IImageExporterDescriptor ImageExportersRegistry.getFirstSupportedDescriptor(Image image, SaveOptionsBase saveOptions)
           Gets the fist found supported descriptor suitable for the specified save options and image.
 void Image.save(java.io.InputStream stream, SaveOptionsBase saveOptions)
           
 void Image.save(java.lang.String filePath, SaveOptionsBase saveOptions)
           Saves the object's data to the specified file location in the specified file format according to save options.
 void Image.saveInternal(Stream stream, SaveOptionsBase saveOptions)
          Deprecated. 

Saves the image's data to the specified stream in the specified file format according to save options.

 

Uses of SaveOptionsBase in com.aspose.imaging.interfaces
 

Methods in com.aspose.imaging.interfaces with parameters of type SaveOptionsBase
 boolean IImageExporterDescriptor.canExport(Image image, SaveOptionsBase saveOptions)
           
 void IImageExporter.export(Image image, java.io.InputStream stream, SaveOptionsBase saveOptions)
          Exports the specified image data into specified data format.
 void IImageExporter.exportInternal(Image image, Stream stream, SaveOptionsBase saveOptions)
          Deprecated. Exports the specified image data into specified data format. The image data to export. The stream to export data to. The export save options.
 

Uses of SaveOptionsBase in com.aspose.imaging.saveoptions
 

Subclasses of SaveOptionsBase in com.aspose.imaging.saveoptions
 class BmpSaveOptions
           The bmp file format save options.
 class GifSaveOptions
           The gif file format save options.
 class JpegSaveOptions
           The jpeg file format save options.
 class PngSaveOptions
           The png file format save options.
 class PsdSaveOptions
           The psd file format save options.
 class TiffSaveOptions
           The tiff file format save options.