Functions | |
| VimosImageArray * | newImageArray (int size) |
| Create an empty image array of appropriate size. | |
| void | deleteImageArray (VimosImageArray *array) |
| Delete an image array object. | |
| void | destroyImageArray (VimosImageArray *array) |
| Destroy an image array object. | |
| int | imageArrayIsEmpty (const VimosImageArray *array) |
| Check if an image array object is empty. | |
| int | imageArrayCapacity (const VimosImageArray *array) |
| Get the capacity of an image array. | |
| int | imageArraySize (const VimosImageArray *array) |
| Get the number of images stored in an image array. | |
| const VimosImage * | imageArrayGet (const VimosImageArray *array, int index) |
| The function retrieves an image from an image array object. | |
| int | imageArraySet (VimosImageArray *array, int index, const VimosImage *image) |
| Set an element of an image array. | |
| VimosImage * | imageArrayRemove (VimosImageArray *array, int index) |
| Remove an image from an image array object. | |
| VimosImage ** | imageArrayGetData (const VimosImageArray *array) |
| Get reference to the array objects data. | |
|
|
Delete an image array object.
|
|
|
Destroy an image array object.
|
|
|
Get the capacity of an image array.
|
|
||||||||||||
|
The function retrieves an image from an image array object.
|
|
|
Get reference to the array objects data.
|
|
|
Check if an image array object is empty.
|
|
||||||||||||
|
Remove an image from an image array object.
NULL. If no image was stored in the array element the function succeeds and the returned reference is NULL.
|
|
||||||||||||||||
|
Set an element of an image array.
|
|
|
Get the number of images stored in an image array.
|
|
|
Create an empty image array of appropriate size.
NULL.
|
1.4.1