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


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


Imagick::getImage()函數是PHP中的內置函數,用於獲取Imagick對象的當前圖像序列。此函數對於將一個Imagick對象的內容複製到新變量中很有用。

用法:

string Imagick::getImage( void )

參數:該函數不接受任何參數。


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

返回值:成功時,此函數返回一個新的Imagick對象。

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

示例1:

<?php 
  
// Create a new imagick object 
$source_imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Copy the Image to another variable 
$destination_imagick = $source_imagick->getImage(); 
  
// Check if image is there in new variable 
header("Content-Type: image/png"); 
  
echo $destination_imagick->getImageBlob(); 
?>

輸出:

示例2:

<?php 
  
// Create a new imagick object 
$source_imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20190823154611/geeksforgeeks24.png'); 
  
// Add a new imagick image to next position 
$source_imagick->addImage(new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20190914153420/paintopaque.png')); 
  
// Copy the Image to another variable 
$destination_imagick = $source_imagick->getImage(); 
  
// Check if next image is also there 
$destination_imagick->nextImage(); 
  
header("Content-Type: image/png"); 
echo $destination_imagick->getImageBlob(); 
?>

輸出:

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



相關用法


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