Gmagick::getfontsize()函數是PHP中的內置函數,用於返回字體磅值。
用法:
public GmagickDraw::getfontsize( void )
參數:該函數不接受任何參數。
返回值:此函數返回與當前GmagickDraw對象關聯的字體磅值。
錯誤/異常:此函數在出錯時引發GmagickException。
以下示例程序旨在說明PHP中的Gmagick::getfontsize()函數:
示例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);
$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 font size
echo $draw->getfontsize();
?>
輸出:
25
參考: http://php.net/manual/en/gmagickdraw.getfontsize.php
相關用法
- PHP ImagickDraw getFontSize()用法及代碼示例
- PHP GmagickDraw arc()用法及代碼示例
- PHP GmagickDraw getfontweight()用法及代碼示例
- PHP GmagickDraw getfont()用法及代碼示例
- PHP GmagickDraw rectangle()用法及代碼示例
- PHP GmagickDraw polygon()用法及代碼示例
- PHP GmagickDraw roundrectangle()用法及代碼示例
- PHP GmagickDraw polyline()用法及代碼示例
- PHP GmagickDraw setfillopacity()用法及代碼示例
- PHP GmagickDraw settextdecoration()用法及代碼示例
- PHP GmagickDraw setfillcolor()用法及代碼示例
- PHP GmagickDraw settextencoding()用法及代碼示例
- PHP GmagickDraw setfontstyle()用法及代碼示例
- PHP GmagickDraw setfont()用法及代碼示例
- PHP GmagickDraw getstrokewidth()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | GmagickDraw getfontsize() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。