GmagickDraw::setfontweight()函数是PHP中的内置函数,用于设置字体粗细。
用法:
public GmagickDraw::setfontweight( $font_weight ) : GmagickDraw
参数:该函数接受单个参数$font_weight,该参数用于将字体粗细的值保存为整数类型。
返回值:成功时,此函数返回GmagickDraw对象。
以下示例程序旨在说明PHP中的GmagickDraw::setfontweight()函数:
程序1:
<?php
// Create an GmagickDraw object
$draw = new GmagickDraw();
// Set the image filled color
$draw->setFillColor('red');
// Set the Font Weight
$draw->setFontWeight(200);
// Set the font size
$draw->setFontSize(40);
// Set the font family
$draw->setFontFamily('Ubuntu-Mono');
// Set the text to be added
$draw->annotation(30, 170, "GeeksForGeeks");
// Set the image filled color
$draw->setFillColor('green');
// Set the Font Stretch
$draw->setFontStretch(3);
// Set the font size
$draw->setFontSize(30);
// Set the font family
$draw->setFontFamily('Open-Sans-Light-Italic');
// Set the text to be added
$draw->annotation(30, 250, "Font-Weight : 200");
// 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();
?>
输出:
程序2:
<?php
// Create an GmagickDraw object
$draw = new GmagickDraw();
// Set the image filled color
$draw->setFillColor('Green');
// Set the font size
$draw->setFontSize(30);
// Set the Font Weight
$draw->setFontWeight(400);
// Set the font family
$draw->setFontFamily('Ani');
// Set the text to be added
$draw->annotation(30, 40, "GeeksForGeeks");
// Create new Gmagick object
$gmagick= new Gmagick();
// Set the image dimension
$gmagick->newImage(250, 70, '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.net/manual/en/gmagickdraw.setfontweight.php
相关用法
- PHP ImagickDraw setFontWeight()用法及代码示例
- PHP GmagickDraw arc()用法及代码示例
- PHP GmagickDraw ellipse()用法及代码示例
- PHP GmagickDraw rectangle()用法及代码示例
- PHP GmagickDraw gettextencoding()用法及代码示例
- PHP GmagickDraw gettextdecoration()用法及代码示例
- PHP GmagickDraw bezier()用法及代码示例
- PHP GmagickDraw getfillcolor()用法及代码示例
- PHP GmagickDraw getstrokeopacity()用法及代码示例
- PHP GmagickDraw getstrokewidth()用法及代码示例
- PHP GmagickDraw getfontsize()用法及代码示例
- PHP GmagickDraw roundrectangle()用法及代码示例
- PHP GmagickDraw point()用法及代码示例
- PHP GmagickDraw line()用法及代码示例
- PHP GmagickDraw setfontsize()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | GmagickDraw setfontweight() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。