Image

Overview

Image is a class in Aspose.Slides FOSS for Java. Inherits from: IImage.

Represents a raster or vector image.

This class provides 13 methods for working with Image objects in Java programs. Available methods include: Image, close, getContentType, getData, getHeight, getSize, getWidth, initInternal, save. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: contentType, data, height, size, width.

Properties

NameTypeAccessDescription
sizeSizeRead{@inheritDoc}
/
widthintRead{@inheritDoc}
/
heightintRead{@inheritDoc}
/
contentTypeStringReadGets the MIME content type of the image.
databyte[]ReadGets the raw image data.

Methods

SignatureDescription
Image()Creates an uninitialized image.
initInternal(data: byte[], contentType: String)Internal initialization with image data.
getSize()Size{@inheritDoc}
/
getWidth()int{@inheritDoc}
/
getHeight()int{@inheritDoc}
/
getContentType()StringGets the MIME content type of the image.
getData()byte[]Gets the raw image data.
save(filename: String){@inheritDoc}
/
save(filename: String, format: String){@inheritDoc}
/
save(filename: String, format: String, quality: int){@inheritDoc}
/
save(stream: OutputStream, format: String){@inheritDoc}
/
save(stream: OutputStream, format: String, quality: int){@inheritDoc}
/
close(){@inheritDoc}
/

See Also