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


PHP GmagickDraw settextdecoration()用法及代碼示例


GmagickDraw::settextdecoration()函數是PHP中的內置函數,用於指定在用文本注釋時要應用的修飾。

用法:

public GmagickDraw::settextdecoration( $decoration ) : GmagickDraw

參數:該函數接受單個參數$decoration,該參數用於保持DECORATION_的值恒定。
DECORATION_常量列表如下:


  • Gmagick::DECORATION_NO(整數)
  • Gmagick::DECORATION_UNDERLINE(整數)
  • Gmagick::DECORATION_OVERLINE(整數)
  • Gmagick::DECORATION_LINETROUGH(整數)

返回值:成功時此函數返回GmagickDraw對象

以下示例程序旨在說明PHP中的GmagickDraw::settextdecoration()函數:

程序1:

<?php 
  
// Create an GmagickDraw  object 
$draw = new GmagickDraw (); 
  
// Set the image filled color  
$draw->setFillColor('green'); 
  
// Set the font size 
$draw->setFontSize(60); 
  
// Set the Text Decoration 
$draw->setTextDecoration(4); 
  
// Set the text to be added 
$draw->annotation(50, 75, "GeeksForGeeks"); 
   
// Create new Gmagick Object 
$gmagick = new Gmagick (); 
  
// Set image dimensions 
$gmagick ->newImage(500, 160, 'white'); 
  
// Set the image format 
$gmagick ->setImageFormat("png"); 
  
// Draw the image 
$gmagick ->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image 
echo $gmagick ->getImageBlob(); 
?>

輸出:
setTextDecoration

程序2:

<?php 
  
// Create an GmagickDraw object 
$draw = new GmagickDraw (); 
  
// Set the image filled color  
$draw->setFillColor('yellow'); 
  
// Set the font size 
$draw->setFontSize(20); 
  
// Set the TextDecoration() function 
// Text is Upperline 
$draw->setTextDecoration(3); 
// Set the text to be added 
$draw->annotation(50, 75, "A Computer Science Portal For Geeks!"); 
  
// Create new Gmagick Object  
$gmagick = new Gmagick (); 
  
// Set the image dimensions 
$gmagick ->newImage(500, 160, 'black'); 
  
// Set the image format 
$gmagick ->setImageFormat("png"); 
  
// Draw the image 
$gmagick ->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image 
echo $gmagick ->getImageBlob(); 
?>

輸出:
setTextDecoration

參考: http://php.net/manual/en/gmagickdraw.settextdecoration.php



相關用法


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