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


PHP Imagick setImageDelay()用法及代碼示例


Imagick::setImageDelay()函數是PHP中的內置函數,用於設置圖像延遲。對於動畫圖像,它是顯示下一幀之前應顯示圖像幀的時間。可以為圖像中的每個幀分別設置延遲。

用法:

bool Imagick::setImageDelay( Imagick $delay )

參數:此函數接受單個參數$delay,該參數保存延遲圖像的時間(以厘秒為單位)。


返回值:成功時此函數返回TRUE。

異常:該函數在錯誤時引發ImagickException。

以下示例程序旨在說明PHP中的Imagick::setImageDelay()函數:

程序1:

<?php 
  
// Create a new imagick object 
$imagickAnimation = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20191117145951/g4gnaimation1.gif'); 
  
foreach ($imagickAnimation as $frame) { 
  
    // Set the Delay to 3 seconds 
    $frame->setImageDelay(300); 
} 
  
// Show the output 
header("Content-Type: image/gif"); 
  
echo $imagickAnimation->getImagesBlob(); 
?>

輸出:

程序2:

<?php 
  
// Create a new imagick object 
$imagickAnimation = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20191117145951/g4gnaimation1.gif'); 
  
foreach ($imagickAnimation as $frame) { 
  
    // Set the Delay to 10 centiseconds 
    $frame->setImageDelay(10); 
} 
  
// Show the output 
header("Content-Type: image/gif"); 
echo $imagickAnimation->getImagesBlob(); 
?>

輸出:

參考: https://www.php.net/manual/en/imagick.setimagedelay.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick setImageDelay() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。