public interface IImageCollection extends IGenericCollection<IPPImage>
Represents collection of PPImage.
Modifier and Type | Method and Description |
---|---|
IPPImage |
addImage(android.graphics.Bitmap image)
Add an image to a presentation.
|
IPPImage |
addImage(byte[] buffer)
Adds an image to a presentation from specified buffer.
|
IPPImage |
addImage(java.io.InputStream stream)
Add an image to a presentation from stream.
|
IPPImage |
addImage(java.io.InputStream stream,
int loadingStreamBehavior)
Creates and adds an image to a presentation from stream.
|
IPPImage |
addImage(IPPImage imageSource)
Adds a copy of an image from an another presentation.
|
IPPImage |
addImage(ISvgImage svgImage)
Add an image to a presentation from SVG object.
|
IPPImage |
get_Item(int index)
Returns image by its index.
|
iterator
IPPImage get_Item(int index)
Returns image by its index.
index
- Index.IPPImage addImage(android.graphics.Bitmap image)
Add an image to a presentation.
image
- Image to add.
IPPImage addImage(java.io.InputStream stream)
Add an image to a presentation from stream.
stream
- Stream to add image from.
IPPImage addImage(java.io.InputStream stream, int loadingStreamBehavior)
Creates and adds an image to a presentation from stream.
stream
- Stream to add image file from.loadingStreamBehavior
- The behavior which will be applied to the stream.IPPImage
.IPPImage addImage(byte[] buffer)
Adds an image to a presentation from specified buffer.
buffer
- Buffer.IPPImage addImage(IPPImage imageSource)
Adds a copy of an image from an another presentation.
imageSource
- Source image.