当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ImagickDraw getTextAlignment()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw getTextAlignment() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。