PHP 8.5.0 Released!

Imagick::nextImage

(PECL imagick 2, PECL imagick 3)

Imagick::nextImage次の画像に移動する

説明

public Imagick::nextImage(): bool

画像リスト内の次の画像を Imagick オブジェクトに関連付けます。

パラメータ

この関数にはパラメータはありません。

戻り値

成功した場合に true を返します。

add a note

User Contributed Notes 2 notes

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
);
?>
up
-2
markus dot s dot schmitz at gmail dot com
12 years ago
Convert PDF to JPG page-wise:

<?php
$i = 0;

$imagick = new Imagick();
$imagick->readImage('myfile.pdf');
while($imagick->hasNextImage()) {
    $imagick->writeImage(++$i.'-converted.jpg', false);
    $imagick->nextImage();
}
?>

See also: http://php.net/manual/en/imagick.readimage.php
To Top