ImageCollection

ImageCollection

Overview

ImageCollection is a class in Aspose.Slides FOSS for C++.

Manages the collection of images in a presentation.

This class provides 9 methods for working with ImageCollection objects in C++ programs. Available methods include: ImageCollection, add_image, begin, end, size. All public members are accessible to any C++ application after installing the Aspose.Slides FOSS for C++ package. Properties: ImageCollection.

Properties

NameTypeAccessDescription
ImageCollectionImageCollectionReadGets the image collection.

Methods

SignatureDescription
ImageCollection()ImageCollectionConstructs a new empty image collection
ImageCollection()
ImageCollection()
size()std::size_tReturns the number of images in the collection.
add_image(data: std::span<const std::uint8_t>)PPImageAdds an image from raw bytes. Deduplicates by content.
begin()iteratorReturns an iterator to the first image in the collection
end()iteratorReturns an iterator past the last image in the collection
begin()const_iterator
end()const_iterator

See Also