IPPImage — Aspose.Slides FOSS Java API Reference

IPPImage — Represents an image in a presentation.

Package: org.aspose.slides.foss


Properties

PropertyTypeAccessDescription
binaryDatabyte[]Read/Write
imageIImageRead/Write
contentTypeStringRead/Write
widthintRead/Write
heightintRead/Write
xintRead/Write
yintRead/Write

Methods

MethodReturnsDescription
getBinaryData()byte[]Returns the copy of an image’s data.
getImage()IImageReturns the copy of an image.
getContentType()StringReturns a MIME type of an image.
getWidth()intReturns the width of an image.
getHeight()intReturns the height of an image.
getX()intReturns the X-offset of an image.
getY()intReturns the Y-offset of an image.
replaceImage(byte[] newImageData)voidReplaces the image data with new raw binary data.
replaceImage(IImage newImage)voidReplaces the image with the specified IImage.
replaceImage(IPPImage newImage)voidReplaces the image with another presentation image.

See Also