ImagickDraw::setTextAlignment()函数是PHP中的内置函数,用于指定可以左移,居中或右移的文本对齐方式。
用法:
bool ImagickDraw::setTextAlignment( $alignment )
参数:该函数接受单个参数$alignment,该参数用于保存ALIGN_常量的值。
ALIGN_常量列表如下:
- imagick::ALIGN_UNDEFINED(整数)
- imagick::ALIGN_LEFT(整数)
- imagick::ALIGN_CENTER(整数)
- imagick::ALIGN_RIGHT(整数)
返回值:该函数不返回任何值。
以下示例程序旨在说明PHP中的ImagickDraw::setTextAlignment()函数:
程序:
<?php
// Create an ImagickDraw object
$draw = new ImagickDraw();
// Set the image filled color
$draw->setFillColor('white');
// Set the Font size
$draw->setFontSize(40);
// Set the text Alignment
$draw->setTextAlignment(0);
// Set the text to be added
$draw->annotation(110, 75, "GeeksforGeeks!");
// Set the text alignment
$draw->setTextAlignment(1);
// Set the Font size
$draw->setFontSize(20);
// Set the text to be added
$draw->annotation(100, 110, "A computer science portal for geeks");
// Create new imagick object
$imagick = new Imagick();
// Set the image dimension
$imagick->newImage(500, 300, 'green');
// 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.settextalignment.php
相关用法
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw getFont()用法及代码示例
- PHP ImagickDraw setTextInterlineSpacing()用法及代码示例
- PHP ImagickDraw clone()用法及代码示例
- PHP ImagickDraw resetVectorGraphics()用法及代码示例
- PHP ImagickDraw setFillAlpha()用法及代码示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代码示例
- PHP ImagickDraw getTextInterwordSpacing()用法及代码示例
- PHP ImagickDraw setFillOpacity()用法及代码示例
- PHP ImagickDraw pathCurveToQuadraticBezierRelative()用法及代码示例
- PHP ImagickDraw getFontWeight()用法及代码示例
- PHP ImagickDraw getTextEncoding()用法及代码示例
- PHP ImagickDraw setTextEncoding()用法及代码示例
- PHP ImagickDraw comment()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | ImagickDraw setTextAlignment() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。