GmagickDraw::setfontstyle()函數是PHP中的內置函數,用於設置在文本注釋時使用的字體樣式。樣式枚舉充當wild-card無關項。
用法:
public GmagickDraw::setfontstyle( $style ) : GmagickDraw
參數:該函數接受單個參數$style,該參數用於將字體樣式的值保存為整數類型。
STYLE常量:樣式常量的列表如下:
- Gmagick::STYLE_NORMAL(整數)
- Gmagick::STYLE_ITALIC(整數)
- Gmagick::STYLE_OBLIQUE(整數)
- Gmagick::STYLE_ANY(整數)
返回值:成功時,此函數返回GmagickDraw對象。
以下示例程序旨在說明PHP中的GmagickDraw::setfontstyle()函數:
程序1:
<?php
// Create an GmagickDraw object
$draw = new GmagickDraw();
// Set the image filled color
$draw->setFillColor('red');
// Set the Font Size
$draw->setFontSize(40);
// Set the Font Style
$draw->setfontstyle(\Gmagick::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 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('black');
// Set the font size
$draw->setFontSize(30);
// Set Font Style
$draw->setfontstyle(\Gmagick::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 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();
?>
輸出:
參考: http://php.net/manual/en/gmagickdraw.setfontstyle.php
相關用法
- PHP ImagickDraw setFontStyle()用法及代碼示例
- PHP GmagickDraw arc()用法及代碼示例
- PHP GmagickDraw getstrokewidth()用法及代碼示例
- PHP GmagickDraw getfontweight()用法及代碼示例
- PHP GmagickDraw getstrokeopacity()用法及代碼示例
- PHP GmagickDraw getfontsize()用法及代碼示例
- PHP GmagickDraw settextencoding()用法及代碼示例
- PHP GmagickDraw setfont()用法及代碼示例
- PHP GmagickDraw setstrokecolor()用法及代碼示例
- PHP GmagickDraw getfont()用法及代碼示例
- PHP GmagickDraw gettextdecoration()用法及代碼示例
- PHP GmagickDraw rectangle()用法及代碼示例
- PHP GmagickDraw gettextencoding()用法及代碼示例
- PHP GmagickDraw rotate()用法及代碼示例
- PHP GmagickDraw getfontstyle()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | GmagickDraw setfontstyle() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。