当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick nextImage()用法及代码示例


Imagick::nextImage()函数是PHP中的内置函数,用于移至Imagick实例中的下一个图像。 Imagick实例可能包含其中的图像列表,并且Imagick nextImage()将图像列表中的下一个图像与Imagick实例相关联。

用法:

bool Imagick::nextImage( void ) 

参数:该函数不接受任何参数。


返回值:成功执行时返回true。

以下示例程序旨在说明PHP中的Imagick::nextImage()函数:

程序:

<?php 
  
// Declare a list of images 
$images = [ 
"https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png", 
"http://contribute.geeksforgeeks.org/wp-content/uploads/geek.png"
]; 
  
// List the two images to be loaded in Imagick object 
$count = 0; 
  
$image = new Imagick($images); 
  
while($image->nextImage()) { 
      
    // Increment count till we have next image on the list 
    $count++; 
} 
  
$count++; 
  
echo("The count of images in Imagick instance is " . $count); 
  
?>

输出:

The count of images in $image is 2

参考: https://www.php.net/manual/en/imagick.nextimage.php



相关用法


注:本文由纯净天空筛选整理自piyush25pv大神的英文原创作品 PHP | Imagick nextImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。