當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()函數:

程序:

<?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(); 
?>

輸出:
setTextAlignment

參考: http://php.net/manual/en/imagickdraw.settextalignment.php



相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | ImagickDraw setTextAlignment() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。