ImagickDraw::setFontStyle()函数是PHP中的内置函数,用于设置在用文本注释时使用的字体样式。 AnyStyle枚举用作wild-card“无关紧要”选项。
用法:
bool ImagickDraw::setFontStyle( $style )
参数:此函数接受单个参数$style,该参数用于将字体样式的值保存为整数类型。
STYLE constants:
- imagick::STYLE_NORMAL(整数)
- imagick::STYLE_ITALIC(整数)
- imagick::STYLE_OBLIQUE(整数)
- imagick::STYLE_ANY(整数)
返回值:该函数不返回任何值。
以下示例程序旨在说明PHP中的ImagickDraw::setFontStyle()函数:
程序1:
<?php
// Create an ImagickDraw object
$draw = new ImagickDraw();
// Set the image filled color
$draw->setFillColor('red');
// Set the Font Size
$draw->setFontSize(40);
// Set the Font Style
$draw->setFontStyle(\Imagick::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 Imagick object
$imagick = new Imagick();
// Set the image dimension
$imagick->newImage(350, 300, '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();
?>
输出:
程序2:
<?php
// Create an ImagickDraw object
$draw = new ImagickDraw();
// Set the image filled color
$draw->setFillColor('black');
// Set the font size
$draw->setFontSize(30);
// Set Font Style
$draw->setFontStyle(\Imagick::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 Imagick object
$imagick = new Imagick();
// Set the image dimension
$imagick->newImage(350, 300, '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();
?>
输出:
参考: http://php.net/manual/en/imagickdraw.setfontstyle.php
相关用法
- PHP GmagickDraw setfontstyle()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw setFillOpacity()用法及代码示例
- PHP ImagickDraw pathCurveToQuadraticBezierSmoothRelative()用法及代码示例
- PHP ImagickDraw setFillAlpha()用法及代码示例
- PHP ImagickDraw getTextInterwordSpacing()用法及代码示例
- PHP ImagickDraw getFont()用法及代码示例
- PHP ImagickDraw clone()用法及代码示例
- PHP ImagickDraw setTextAntialias()用法及代码示例
- PHP ImagickDraw setTextInterlineSpacing()用法及代码示例
- PHP ImagickDraw resetVectorGraphics()用法及代码示例
- PHP ImagickDraw setTextKerning()用法及代码示例
- PHP ImagickDraw setTextEncoding()用法及代码示例
- PHP ImagickDraw comment()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | ImagickDraw setFontStyle() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。