📜  PHP | imagickdraw setTextAlignment()函数

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

PHP | imagickdraw setTextAlignment()函数

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()函数

程序:

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。 PHP