English | 简体中文 | 繁體中文
查询

Imagick::current()函数—用法及示例

「 返回当前图像序列中的当前图像 」


函数名: Imagick::current()

适用版本: Imagick 3.0.0 及以上版本

用法: Imagick::current() 方法用于返回当前图像序列中的当前图像。

示例:

// 创建一个 Imagick 对象
$image = new Imagick();

// 添加多个图像到序列中
$image->readImage('image1.jpg');
$image->readImage('image2.jpg');
$image->readImage('image3.jpg');

// 设置当前图像为第二个图像
$image->setIteratorIndex(1);

// 获取当前图像
$currentImage = $image->current();

// 显示当前图像
$currentImage->setImageFormat('png');
header('Content-Type: image/png');
echo $currentImage;

// 销毁 Imagick 对象
$image->destroy();

上述示例中,首先创建了一个 Imagick 对象 $image,然后使用 readImage() 方法依次添加了三个图像到序列中。接着使用 setIteratorIndex() 方法将当前图像设置为第二个图像。最后使用 current() 方法获取当前图像,并对其进行一些操作(这里将其转换为 PNG 格式并输出)。

请注意,使用 current() 方法之前必须使用 setIteratorIndex() 方法设置当前图像的索引。

补充纠错
热门PHP函数
分享链接