XImageCollection

XImageCollection

Overview

XImageCollection is a class in Aspose.PDF FOSS for C++.

XImageCollection manages multiple XImage objects, providing Add, Replace, Delete, and Clear operations.

This class provides 13 methods for working with XImageCollection objects in C++ programs. Available methods include: Add, Clear, Contains, Count, Delete, GetImageName, Names, Remove, Replace, XImageCollection. All public members are accessible to any C++ application after installing the Aspose.PDF FOSS for C++ package. Accessor methods: XImageCollection.

Accessor Methods

NameTypeAccessDescription
XImageCollectionXImageCollectionReadGets the x image collection.

Methods

SignatureDescription
XImageCollection()XImageCollectionCalls XImageCollection on this XImageCollection instance.
XImageCollection()
Add(image: std::vector<std::byte>)std::stringCalls Add(image) on this XImageCollection instance.
Replace(index: int, image: std::vector<std::byte>)Calls Replace(index, image) on this XImageCollection instance.
Count()intCalls Count on this XImageCollection instance.
Names()std::vector<std::string>Calls Names on this XImageCollection instance.
Delete(index: int)Calls Delete(index) on this XImageCollection instance.
Delete(name: std::string)Calls Delete(name) on this XImageCollection instance.
Delete()
Clear()Calls Clear on this XImageCollection instance.
Contains(image: XImage)boolCalls Contains(image) on this XImageCollection instance.
Remove(image: XImage)boolCalls Remove(image) on this XImageCollection instance.
GetImageName(image: XImage)std::stringCalls GetImageName(image) on this XImageCollection instance.

See Also