ImagickDraw::getTextAlignment()函数是PHP中的内置函数,用于获取文本注释时应用的对齐方式。通过使其停留在左侧,右侧或中间来帮助格式化文本。
用法:
int ImagickDraw::getTextAlignment( void )
参数:此函数不接受任何参数。
返回值:此函数返回对应于ALIGN常数之一的整数值。
ALIGN常数列表如下:
- imagick::ALIGN_UNDEFINED(0)
- imagick::ALIGN_LEFT(1)
- imagick::ALIGN_CENTER(2)
- imagick::ALIGN_RIGHT(3)
异常:该函数在错误时引发ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::getTextAlignment()函数:
程序1:
<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Get the text alignment
$textAlignment = $draw->getTextAlignment();
echo $textAlignment;
?>
输出:
0 // which corresponds to imagick::ALIGN_UNDEFINED
程序2:
<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, 'white');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Align the text
$draw->setTextAlignment(2);
// Set the font size
$draw->setFontSize(25);
// Print the text
$draw->annotation(250, 100, 'The text alignment here is '
. $draw->getTextAlignment());
// Align the text
$draw->setTextAlignment(1);
// Print the text with same x-coordinate
$draw->annotation(250, 180, 'The text alignment here is '
. $draw->getTextAlignment());
// Render the draw commands
$imagick->drawImage($draw);
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
输出:
参考: https://www.php.net/manual/en/imagickdraw.gettextalignment.php
相关用法
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw clone()用法及代码示例
- PHP ImagickDraw pathCurveToQuadraticBezierRelative()用法及代码示例
- PHP ImagickDraw getFont()用法及代码示例
- PHP ImagickDraw setTextInterlineSpacing()用法及代码示例
- PHP ImagickDraw resetVectorGraphics()用法及代码示例
- PHP ImagickDraw setFillAlpha()用法及代码示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代码示例
- PHP ImagickDraw getTextInterwordSpacing()用法及代码示例
- PHP ImagickDraw setFillOpacity()用法及代码示例
- PHP ImagickDraw getFontWeight()用法及代码示例
- PHP ImagickDraw getTextEncoding()用法及代码示例
- PHP ImagickDraw setTextEncoding()用法及代码示例
- PHP ImagickDraw comment()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw getTextAlignment() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。