Imagick::setFirstIterator

(PECL imagick 2, PECL imagick 3)

Imagick::setFirstIteratorSets the Imagick iterator to the first image

Description

public Imagick::setFirstIterator(): bool

Sets the Imagick iterator to the first image.

Parameters

This function has no parameters.

Return Values

Returns true on success.

add a note

User Contributed Notes 1 note

up
2
simonjjarrett at gmail dot com
5 years ago
The following function applies a callback to each image in an Imagick object.

<?php
function imagickMap($callback, $im)
{
$im->setFirstIterator();

do
{
$callback($im);
}
while (
$im->nextImage() );
}
?>

E.g. to convert a series of images to grayscale:

<?php
imagickMap
(
function(
$im)
{
$im->setImageType(Imagick::IMGTYPE_GRAYSCALEMATTE);
},
$im
);
?>
To Top

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant