📜  PHP | GmagickDraw setfontstyle()函数

📅  最后修改于: 2022-05-13 01:56:40.339000             🧑  作者: Mango

PHP | GmagickDraw setfontstyle()函数

GmagickDraw::setfontstyle()函数是PHP中的一个内置函数,用于设置在使用文本进行注释时使用的字体样式。样式枚举充当通配符无关选项。

句法:

public GmagickDraw::setfontstyle( $style ) : GmagickDraw

参数:此函数接受单个参数$style用于将字体样式的值保存为整数类型。

样式常量:样式常量列表如下:

  • Gmagick::STYLE_NORMAL(整数)
  • Gmagick::STYLE_ITALIC(整数)
  • Gmagick::STYLE_OBLIQUE (整数)
  • Gmagick::STYLE_ANY(整数)

返回值:此函数在成功时返回 GmagickDraw 对象。

下面的程序说明了PHP中的 GmagickDraw::setfontstyle()函数:

方案一:

setFillColor('red');
  
// Set the Font Size
$draw->setFontSize(40);
  
// Set the Font Style
$draw->setfontstyle(\Gmagick::STYLE_OBLIQUE);
  
// Set the text to be added
$draw->annotation(30, 170, "GeeksForGeeks");
  
// Set the image filled color
$draw->setFillColor('green');
  
// Set the font size
$draw->setFontSize(30);
  
// Set the text to be added
$draw->annotation(30, 250, "Oblique Style");
  
// Create new Gmagick object     
$gmagick= new Gmagick();
  
// Set the image dimension
$gmagick->newImage(350, 300, 'white');
  
// Set the image format
$gmagick->setImageFormat("png");
  
// Draw the image
$gmagick->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image
echo $gmagick->getImageBlob();
?>

输出:
设置字体样式

方案二:

setFillColor('black');
  
// Set the font size
$draw->setFontSize(30);
  
// Set Font Style
$draw->setfontstyle(\Gmagick::STYLE_ITALIC);
  
// Set the text to be added
$draw->annotation(30, 170, "GeeksForGeeks");
  
// Set the image filled color
$draw->setFillColor('blue');
  
// Set the font size
$draw->setFontSize(25);
  
// Set the text to be added
$draw->annotation(30, 250, "Italic Style");
  
// Create new Gmagick object     
$gmagick= new Gmagick();
  
// Set the image dimension
$gmagick->newImage(350, 300, 'white');
  
// Set the image format
$gmagick->setImageFormat("png");
  
// Draw the image
$gmagick->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image
echo $gmagick->getImageBlob();
?>

输出:
设置字体样式

参考: http: PHP。 PHP