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


PHP ImagickDraw getFontWeight()用法及代码示例


ImagickDraw::getFontWeight()函数是PHP中的内置函数,用于获取在用文本注释时使用的font-weight。字体粗细实际上表示字体的粗体,font-weight越多,粗体文本就越多。可以是100到900之间的任何值。

用法:

int ImagickDraw::getFontWeight( void )

参数:此函数不接受任何参数。


返回值:此函数返回一个包含字体粗细的整数值;如果未设置粗细,则返回0。

异常:该函数在错误时引发ImagickException。

下面给出的程序说明了PHP中的ImagickDraw::getFontWeight()函数:

示例1:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Get the font Weight 
$fontWeight = $draw->getFontWeight(); 
echo $fontWeight; 
?>

输出:

0 // which is the default value.

示例2:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the font Weight 
$draw->setFontWeight(110); 
  
// Get the font Weight 
$fontWeight = $draw->getFontWeight(); 
echo $fontWeight; 
?>

输出:

110

示例3:

<?php 
   
// Create a new imagick object 
$imagick = new Imagick(); 
   
// Create a image on imagick object 
$imagick->newImage(800, 250, '#bfc7d6'); 
   
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
   
// Set the font size 
$draw->setFontSize(30); 
   
// Annotate a text 
$draw->annotation(50, 100,  
                  'The Font weight here is default.'); 
   
// Set the font weight 
$draw->setFontWeight(900); 
   
// Annotate a text 
$draw->annotation(50, 200,  
                  'The Font weight here is ' 
                  . $draw->getFontWeight() . '.'); 
   
// Render the draw commands 
$imagick->drawImage($draw); 
   
// Show the output 
$imagick->setImageFormat('png'); 
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

输出:

参考: https://www.php.net/manual/en/imagickdraw.getfontweight.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw getFontWeight() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。