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();
?>
输出:
程序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();
?>
输出:
参考: http://php.net/manual/en/imagickdraw.setfont.php
相关用法
- PHP GmagickDraw setfont()用法及代码示例
- PHP Imagick setFont()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw translate()用法及代码示例
- PHP ImagickDraw setStrokeOpacity()用法及代码示例
- PHP ImagickDraw setFontSize()用法及代码示例
- PHP ImagickDraw setFontStyle()用法及代码示例
- PHP ImagickDraw scale()用法及代码示例
- PHP ImagickDraw setFillColor()用法及代码示例
- PHP ImagickDraw setFontFamily()用法及代码示例
- PHP ImagickDraw setGravity()用法及代码示例
- PHP ImagickDraw getGravity()用法及代码示例
- PHP ImagickDraw getFontStyle()用法及代码示例
- PHP ImagickDraw getStrokeColor()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | ImagickDraw setFont() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。