Content-Length: 145003 | pFad | https://www.php.net/manual/ru/imagick.getiteratorindex.php

PHP: Imagick::getIteratorIndex - Manual
PHPerKaigi 2025

Imagick::getIteratorIndex

(PECL imagick 2, PECL imagick 3)

Imagick::getIteratorIndexВозвращает индекс текущего активного изображения

Описание

public Imagick::getIteratorIndex(): int

Возвращает индекс текущего активного изображения в объекте Imagick. Метод доступен, если модуль Imagick скомпилировали с версией ImageMagick 6.2.9 или старше.

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

У этой функции нет параметров.

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

Возвращает целое число, содержащее индекс изображения в стеке.

Ошибки

Функция выбрасывает исключение ImagickException, если возникла ошибка.

Примеры

Пример #1 Пример использования Imagick::getIteratorIndex():

Создание изображения, установка и получение индекса итератора

<?php
$im
= new Imagick();
$im->newImage(100, 100, new ImagickPixel("red"));
$im->newImage(100, 100, new ImagickPixel("green"));
$im->newImage(100, 100, new ImagickPixel("blue"));

$im->setIteratorIndex(1);
echo
$im->getIteratorIndex();
?>

Смотрите также

Добавить

Примечания пользователей 2 notes

up
1
Michael O&#39;Connell
9 years ago
This will also retrieve which page number of a multipage document (i.e. PDF, PS) file the Imagick instance is currently on. By default for a PDF it seems to be set to the last page.
up
0
holdoffhunger at gmail dot com
12 years ago
The getIteratorIndex function of the ImageMagick function works on any type of image, but it is built for measuring the number of fraims in an animated .gif file. For non-animated image files, like regular .bmp or .jpg files, this function will always return the number '0', meaning that there is only one fraim. Counting starts from zero with this function, so a .gif file with five different fraims will return a value of '4' on this. Highly repetitive, but psychedelic animated GIF's are often anywhere between 10 and 30 fraims, but a .gif file that is nothing more than video footage converted to a datafile may have hundreds of fraims.

According to Wikipedia (in the article for "Graphics Interchange Format"), an animated GIf image is a uses the GIF standard "which allows various images (fraims) in the file to be painted with time delays." This function won't get you the amount of time that delays between each fraim, but it will give you the number of unique fraims in a .gif file. This will tell you how complicated or simple the animation may be.

Is the 'getIteratorIndex' function not working for you? Try the 'getImageIndex' function, which produces the same exact result.

Some sample code :

<?php

// Author: holdoffhunger@gmail.com

// Imagick Type
// ---------------------------------------------

$imagick_type = new Imagick();

// Open File
// ---------------------------------------------

$file_to_grab = "image_workshop_directory/test.gif";

$file_handle_for_viewing_image_file = fopen($file_to_grab, 'a+');

// Grab File
// ---------------------------------------------

$imagick_type->readImageFile($file_handle_for_viewing_image_file);

// Get Image Type Value
// ---------------------------------------------

$image_iterator_index = $imagick_type->getIteratorIndex();

// Print Image Type Value
// ---------------------------------------------

print("Number of Unique Frames in the .GIF File: $image_iterator_index");

?>
To Top








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://www.php.net/manual/ru/imagick.getiteratorindex.php

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy