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


PHP Gmagick addImage()用法及代碼示例


Gmagick::addImage()函數是PHP中的內置函數,用於向Gmagick對象圖像列表添加新圖像。此函數從源對象的當前位置向Gmagick對象添加新圖像。 Gmagick類具有同時保存和處理多個圖像的能力。

用法:

bool Gmagick::addImage( $source )

參數:該函數接受單個參數$source,該參數保存源Gmagick對象。


返回值:成功時,此函數返回Gmagick對象。

錯誤/異常:此函數在出錯時引發GmagickException。

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

原始圖片1:
adpative thresold image

程序:

<?php  
  
// require_once('path/to/vendor/autoload.php'); 
  
header('Content-type: image/png'); 
  
$image = new Gmagick ( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
  
$t = new Gmagick ( 
'https://media.geeksforgeeks.org/wp-content/uploads/adaptiveThresholdImage.png'); 
  
$image->addImage($t); 
  
echo $image; 
?>
輸出:
adaptive thresold image

原始圖片2:
original image

程序2:

<?php  
    
$string = "Computer Science portal for Geeks!";  
    
// Creating new image of above String  
// and add color and background  
$im = new Gmagick();  
$draw = new GmagickDraw();  
    
// Fill the color in image  
$draw->setFillColor(new GmagickPixel('green'));  
    
// Set the text font size  
$draw->setFontSize(50);  
    
$metrix = $im->queryFontMetrics($draw, $string);  
$draw->annotation(0, 40, $string);  
$im->newImage($metrix['textWidth'], $metrix['textHeight'],  
        new GmagickPixel('white'));  
    
// Draw the image         
$im->drawImage($draw);  
$im->setImageFormat('jpeg');  
   
$t = new Gmagick ( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
   
$im->addImage($t); 
    
    
header("Content-Type: image/jpg");  
echo $im->getImageBlob();  
?> 

輸出:

參考: http://php.net/manual/en/gmagick.addimage.php



相關用法


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