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


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


ImagickDraw::getFontStyle()函数是PHP中的一个内置函数,用于获取文本注释时使用的字体样式。

用法:

int ImagickDraw::getFontStyle( void )

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


返回值:此函数返回与STYLE常量之一对应的整数值,或者在未设置样式的情况下返回0。
STYLE常量列表如下:

  • imagick::STYLE_NORMAL(1)
  • imagick::STYLE_ITALIC(2)
  • imagick::STYLE_OBLIQUE(3)
  • imagick::STYLE_ANY(4)

以下示例程序旨在说明PHP中的ImagickDraw::getFontStyle()函数:

程序1:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Get the font Style 
$fontStyle = $draw->getFontStyle(); 
echo $fontStyle; 
?>

输出:

0 // Which is default value.

程序2:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the font Style 
$draw->setFontStyle(imagick::STYLE_OBLIQUE); 
  
// Get the font Style 
$fontStyle = $draw->getFontStyle(); 
echo $fontStyle; 
?>

输出:

3

程序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 style here is default.'); 
  
// Set the font style 
$draw->setFontStyle(imagick::STYLE_ITALIC); 
  
// Annotate a text 
$draw->annotation(50, 200, 'The Font style here is '
        . $draw->getFontStyle() . '.'); 
  
// 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.getfontstyle.php



相关用法


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