public interface IPPImage
Represents an image in a presentation.
Modifier and Type | Method and Description |
---|---|
byte[] |
getBinaryData()
Returns the copy of an image's data.
|
java.lang.String |
getContentType()
Returns a MIME type of an image, encoded in
BinaryData (getBinaryData() ). |
int |
getHeight()
Returns a height of an image.
|
ISvgImage |
getSvgImage()
Returns or sets ISvgImage object
ISvgImage |
java.awt.image.BufferedImage |
getSystemImage()
Returns the copy of an image of the System.Drawing.Image type.
|
int |
getWidth()
Returns a width of an image.
|
int |
getX()
Returns a X-offset of an image.
|
int |
getY()
Returns a Y-offset of an image.
|
void |
replaceImage(byte[] newImageData)
Replaces image data.
|
void |
replaceImage(IPPImage newImage)
Replaces image.
|
void |
setSvgImage(ISvgImage value)
Returns or sets ISvgImage object
ISvgImage |
byte[] getBinaryData()
Returns the copy of an image's data.
Read-only byte[]
.
java.awt.image.BufferedImage getSystemImage()
Returns the copy of an image of the System.Drawing.Image type.
Read-only BufferedImage
.
ISvgImage getSvgImage()
Returns or sets ISvgImage object ISvgImage
void setSvgImage(ISvgImage value)
Returns or sets ISvgImage object ISvgImage
void replaceImage(byte[] newImageData)
Replaces image data.
newImageData
- The new image's data.void replaceImage(IPPImage newImage)
Replaces image.
newImage
- The new IPPImage.java.lang.String getContentType()
Returns a MIME type of an image, encoded in BinaryData
(getBinaryData()
).
Read-only String
.
int getWidth()
Returns a width of an image.
Read-only int
.
int getHeight()
Returns a height of an image.
Read-only int
.
int getX()
Returns a X-offset of an image.
Read-only int
.
int getY()
Returns a Y-offset of an image.
Read-only int
.