📜  PHP | imagickdraw getTextAlignment()函数

📅  最后修改于: 2022-05-13 01:56:33.795000             🧑  作者: Mango

PHP | imagickdraw getTextAlignment()函数

ImagickDraw::getTextAlignment()函数是PHP中的一个内置函数,用于在使用文本注释时获取应用的对齐方式。它有助于通过使文本粘在左边、右边或中间来格式化文本。

句法:

int ImagickDraw::getTextAlignment( void )

参数:此函数不接受任何参数。

返回值:此函数返回对应于 ALIGN 常量之一的整数值。

ALIGN 常量列表如下:

  • imagick::ALIGN_UNDEFINED (0)
  • 想像::ALIGN_LEFT (1)
  • imagick::ALIGN_CENTER (2)
  • imagick::ALIGN_RIGHT (3)

异常:此函数在出错时抛出 ImagickException。

下面给出的程序说明了PHP中的ImagickDraw::getTextAlignment()函数

方案一:

getTextAlignment();
echo $textAlignment;
?>

输出:

0 // which corresponds to imagick::ALIGN_UNDEFINED

方案二:

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