当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。