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


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


Imagick::labelImage()函數是PHP中的一個內置函數,用於向圖像添加標簽。

用法:

bool Imagick::labelImage( string $label )

參數:該函數接受單個參數$label,該參數保存要添加到圖像的標簽。


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

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

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

程序:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://cdncontribute.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
  
// Adding the label to the image 
$imagick->labelImage("This is my label."); 
  
// Getting the label of the image 
$labelInImage = $imagick->getImageProperties("label"); 
  
// Display the label of image 
echo $labelInImage['label']; 
  
?>

輸出:

This is my label.

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



相關用法


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