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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。