magickSetFirstIterator method
void
magickSetFirstIterator()
Sets the wand iterator to the first image.
After using any images added to the wand using magickAddImage()
or
magickReadImage()
will be prepended before any image in the wand.
Also the current image has been set to the first image (if any) in the
Magick Wand. Using magickNextImage()
will then set the current image to
the second image in the list (if present).
This operation is similar to magickResetIterator()
but differs in how
magickAddImage()
, magickReadImage()
, and magickNextImage()` behaves
afterward.
Implementation
void magickSetFirstIterator() =>
_magickWandBindings.MagickSetFirstIterator(_wandPtr);