Gmagick::setfontsize()函数是PHP中的内置函数,用于设置在用文本注释时使用的字体大小。
用法:
public GmagickDraw::setfontsize( $pointsize )
参数:该函数接受单个参数$pointsize,该参数用于存储字体大小。
返回值:成功时,此函数返回GmagickDraw对象。
以下示例程序旨在说明PHP中的Gmagick::setfontsize()函数:
程序1:
<?php
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Create GmagickPixel object
$fillColor = new GmagickPixel('Green');
// Set stroke opacity
$draw->setfillcolor('red');
// Set the width and height of image
$draw->setStrokeWidth(7);
//Set the fontsize
$draw->setfontsize(72);
// Function to draw circle
$draw->circle(250, 250, 100, 150);
$gmagick = new Gmagick();
$gmagick->newImage(500, 500, 'White');
$gmagick->setImageFormat("png");
$gmagick->drawImage($draw);
// Using getfontsize() function
print_r($draw->getfontsize());
?>
输出:
72
程序2:
<?php
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->setFillColor('Green');
// Set the width and height of image
$draw->setStrokeWidth(1);
// Function to draw line
for($x = 0; $x < 40; $x++) {
$draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500));
$draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500));
$draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500));
$draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500));
}
$gmagick = new Gmagick();
$gmagick->newImage(500, 500, 'White');
$gmagick->setImageFormat("png");
// Set the color
$draw->setFillColor('Black');
//set Font Size
$draw->setFontSize(25);
// Use of drawimage function
$gmagick->drawImage($draw);
$gmagick->annotateImage($draw, 5, 120, 0,
'GeeksforGeeks: A computer science portal');
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: http://php.net/manual/en/gmagickdraw.setfontsize.php
相关用法
- PHP ImagickDraw setFontSize()用法及代码示例
- PHP GmagickDraw arc()用法及代码示例
- PHP GmagickDraw rotate()用法及代码示例
- PHP GmagickDraw annotate()用法及代码示例
- PHP GmagickDraw polygon()用法及代码示例
- PHP GmagickDraw getfillopacity()用法及代码示例
- PHP GmagickDraw getfontstyle()用法及代码示例
- PHP GmagickDraw gettextencoding()用法及代码示例
- PHP GmagickDraw gettextdecoration()用法及代码示例
- PHP GmagickDraw getfontsize()用法及代码示例
- PHP GmagickDraw getstrokeopacity()用法及代码示例
- PHP GmagickDraw getstrokewidth()用法及代码示例
- PHP GmagickDraw rectangle()用法及代码示例
- PHP GmagickDraw roundrectangle()用法及代码示例
- PHP GmagickDraw point()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | GmagickDraw setfontsize() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。