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


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


ImagickDraw::setFont()函數是PHP中的內置函數,用於設置在用文本注釋時使用的fully-specified字體。

用法:

bool ImagickDraw::setFont( $font_name )

參數:該函數接受單個參數$font_name,該參數用於將字體名稱的值保存為字符串。


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

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

程序1:

<?php  
  
// Create an ImagickDraw object.  
$draw = new ImagickDraw(); 
  
// Set the fill color 
$draw->setFillColor('green'); 
      
// Set the Font Size 
$draw->setFontSize(40); 
   
// Set the Font Style 
$draw->setFont("./font/IndieFlower.ttf"); 
  
// Set the text to be added 
$draw->annotation(50, 50, "GeeksForGeeks"); 
   
// Set the Font Style 
$draw->setFont("./font/DancingScript-Regular.ttf"); 
  
// Set the text to be added 
$draw->annotation(10, 100, "A Computer Science Portal For Geeks!"); 
   
// Set the Font Style 
$draw->setFont("./font/NanumGothic-Regular.ttf"); 
  
// Set the text to be added 
$draw->annotation(50, 150, "@sarthak_ishu11"); 
  
// Create new Imagick object   
$imagick = new Imagick(); 
  
// Set the image dimension 
$imagick->newImage(560, 200, 'white'); 
  
// Set the image format 
$imagick->setImageFormat("png"); 
  
// Draw the image 
$imagick->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image 
echo $imagick->getImageBlob(); 
?>

輸出:
setFont

程序2:

<?php  
  
// Create an ImagickDraw object 
$draw = new ImagickDraw(); 
      
// Set the Font Size 
$draw->setFontSize(40); 
  
// Set the image filled color 
$draw->setFillColor('green'); 
  
// Draw the rectangle 
$draw->rectangle(30, 100, 300, 300); 
  
// Set the image filled color 
$draw->setFillColor('black'); 
  
// Set the font style 
$draw->setFont("./font/IndieFlower.ttf"); 
  
// Set the text to be added 
$draw->annotation(35, 280, "GeeksForGeeks"); 
   
// Create new Imagick object 
$imagick = new Imagick(); 
  
// Set the image dimensions 
$imagick->newImage(330, 330, 'white'); 
  
// Set the image format 
$imagick->setImageFormat("png"); 
  
// Draw the image  
$imagick->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image 
echo $imagick->getImageBlob(); 
?>

輸出:
setFont

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



相關用法


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