IImageCollection

IImageCollection — Aspose.Slides FOSS Java API Reference

IImageCollection — Represents a collection of images in a presentation.

Package: org.aspose.slides.foss


Methods

MethodReturnsDescription
size()intReturns the number of images in the collection.
get(int index)IPPImageGets the image at the specified index.
addImage(IImage image)IPPImageAdds an image to the collection from an IImage.
addImage(byte[] imageData)IPPImageAdds an image to the collection from raw byte data.
addImage(InputStream stream)IPPImageAdds 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.

See Also