Imagick::setIteratorIndex

(No version information available, might be only in CVS)

Imagick::setIteratorIndex — Set the iterator position

Описание

bool Imagick::setIteratorIndex ( int $index )
Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Set the iterator to the position in the image list specified with the index parameter

Список параметров

index

The position to set the iterator to

Возвращаемые значения

Returns TRUE on success.

Коментарии

This function returns true on success but setting the iterator to an invalid index throws an exception instead of returning false:
Fatal error: Uncaught exception 'ImagickException' with message 'Unable to set iterator index'

This can happen when counting images inside a gif file, because the iterator count starts at zero and not one. If you count the number of images in a gif file be sure to use iterator 0 for the first image, like this:

<?php
$image 
= new Imagick('simple.gif');
$image->setIteratorIndex(0);
?>
2011-03-14 20:06:11
http://php5.kiev.ua/manual/ru/function.imagick-setiteratorindex.html

    Поддержать сайт на родительском проекте КГБ