哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

Imagick::getIteratorIndex

(PECL imagick 2, PECL imagick 3)

Imagick::getIteratorIndexGets the index of the current active image

说明

public Imagick::getIteratorIndex(): int

Returns the index of the current active image within the Imagick object. 此方法在Imagick基于ImageMagick 6.2.9以上版本编译时可用。

参数

此函数没有参数。

返回值

Returns an integer containing the index of the image in the stack.

错误/异常

错误时抛出 ImagickException。

范例

示例 #1 Using Imagick::getIteratorIndex():

Create images, set and get the iterator index

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

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

参见

打开 哈希空间 微信小程序中查看更佳