Package | Description |
---|---|
com.aspose.imaging | |
com.aspose.imaging.imageoptions | |
com.aspose.imaging.interfaces |
Modifier and Type | Method and Description |
---|---|
boolean |
Image.canSave(ImageOptionsBase options)
Determines whether image can be saved to the specified file format represented by the passed save options.
|
static Image |
Image.create(ImageOptionsBase imageOptions,
int width,
int height)
Creates a new image using the specified create options.
|
static IImageCreator |
ImageCreatorsRegistry.createFirstSupportedCreator(ImageOptionsBase imageOptions)
Creates the first found creator suitable for the specified.
|
static IImageExporter |
ImageExportersRegistry.createFirstSupportedExporter(Image image,
ImageOptionsBase options)
Creates the first found exporter suitable for the specified save options and image.
|
static IImageExporterDescriptor |
ImageExportersRegistry.getFirstSupportedDescriptor(Image image,
ImageOptionsBase options)
Gets the fist found supported descriptor suitable for the specified save options and image.
|
static IImageCreatorDescriptor |
ImageCreatorsRegistry.getFirstSupportedDescriptor(ImageOptionsBase imageOptions)
Gets the fist found supported descriptor suitable for the specified.
|
void |
Image.save(Stream stream,
ImageOptionsBase optionsBase)
Saves the image's data to the specified stream in the specified file format according to save options.
|
void |
Image.save(java.lang.String filePath,
ImageOptionsBase options)
Saves the object's data to the specified file location in the specified file format according to save options.
|
Constructor and Description |
---|
ImageOptionsBase(ImageOptionsBase imageOptions)
Initializes a new instance of the
ImageOptionsBase class. |
Modifier and Type | Class and Description |
---|---|
class |
BmpOptions
The bmp file format creation options.
|
class |
GifOptions
The gif file format creation options.
|
class |
JpegOptions
The jpeg file format create options.
|
class |
PngOptions
The png file format create options.
|
class |
PsdOptions
The psd file format create options.
|
class |
TiffOptions
The tiff file format options.
|
Modifier and Type | Method and Description |
---|---|
boolean |
IImageCreatorDescriptor.canCreate(ImageOptionsBase imageOptions)
Determines whether image creator can create a new image using the
|
boolean |
IImageExporterDescriptor.canExport(Image image,
ImageOptionsBase optionsBase)
Determines whether image exporter can export the specified image to the specified image format specified by save options.
|
Image |
IImageCreator.create(StreamContainer streamContainer,
ImageOptionsBase imageOptions,
int width,
int height)
Creates a new image instance with
|
void |
IImageExporter.export(Image image,
Stream stream,
ImageOptionsBase optionsBase)
Exports the specified image data into specified data format.
|