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


PHP ImagickDraw setTextUnderColor()用法及代碼示例


ImagickDraw::setTextUnderColor()函數是PHP中的內置函數,用於設置要放置在文本注釋下方的背景矩形的顏色。

用法:

bool ImagickDraw::setTextUnderColor( $under_color )

參數:該函數接受單個參數$under_color,該參數用於保存文本的背景色值。


返回值:該函數不返回任何值。

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

程序1:

<?php  
  
// Create an ImagickDraw object  
$draw = new ImagickDraw(); 
  
// Set the image filled color  
$draw->setFillColor('white'); 
  
// Set the font size 
$draw->setFontSize(68); 
  
// Set the Text Under Color 
$draw->setTextUnderColor('green'); 
  
// Set the text to be added 
$draw->annotation(0, 190, "GeeksForGeeks"); 
  
// Set the font size 
$draw->setFontSize(40); 
  
// Set the text to be added 
$draw->annotation(120, 290, "@sarthak_ishu11"); 
  
// Create new Imagick object  
$imagick = new Imagick(); 
  
// Set the image dimensions 
$imagick->newImage(500, 400, 'lightgreen'); 
  
// Set the image format 
$imagick->setImageFormat("png"); 
  
// Draw the image  
$imagick->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image 
echo $imagick->getImageBlob(); 
?>

輸出:
setTextUnderColor

程序2:

<?php  
  
// Create an ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the image filled color  
$draw->setFillColor('white'); 
  
// Set the font size 
$draw->setFontSize(68); 
  
// Set the text to be added 
$draw->annotation(0, 90, "GeeksForGeeks"); 
  
// Set the Text Under Color 
$draw->setTextUnderColor('blue'); 
  
// Set the text to be added 
$draw->annotation(0, 190, "GeeksForGeeks"); 
  
// Create new Imagick object  
$imagick = new Imagick(); 
  
// Set the image dimensions 
$imagick->newImage(500, 300, 'lightgreen'); 
  
// Set the image format 
$imagick->setImageFormat("png"); 
  
// Draw the image  
$imagick->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image  
echo $imagick->getImageBlob(); 
?>

輸出:
setTextUnderColor

參考: http://php.net/manual/en/imagickdraw.settextundercolor.php



相關用法


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