當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。