IImageCollection — Aspose.Slides FOSS Java API Reference
IImageCollection — Represents a collection of images in a presentation.
Package: org.aspose.slides.foss
Methods
| Method | Returns | Description |
|---|---|---|
size() | int | Returns the number of images in the collection. |
get(int index) | IPPImage | Gets the image at the specified index. |
addImage(IImage image) | IPPImage | Adds an image to the collection from an IImage. |
addImage(byte[] imageData) | IPPImage | Adds an image to the collection from raw byte data. |
addImage(InputStream stream) | IPPImage | Adds an image to the collection from an input stream. |
asICollection() | List<IPPImage> | Returns this collection as an unmodifiable List. |
asIEnumerable() | Iterable<IPPImage> | Returns this collection as an Iterable. |