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


PHP ImagickDraw setFontStyle()用法及代碼示例


ImagickDraw::setFontStyle()函數是PHP中的內置函數,用於設置在用文本注釋時使用的字體樣式。 AnyStyle枚舉用作wild-card“無關緊要”選項。

用法:

bool ImagickDraw::setFontStyle( $style )

參數:此函數接受單個參數$style,該參數用於將字體樣式的值保存為整數類型。


STYLE constants:

  • imagick::STYLE_NORMAL(整數)
  • imagick::STYLE_ITALIC(整數)
  • imagick::STYLE_OBLIQUE(整數)
  • imagick::STYLE_ANY(整數)

返回值:該函數不返回任何值。

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

程序1:

<?php 
  
// Create an ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the image filled color 
$draw->setFillColor('red'); 
  
// Set the Font Size 
$draw->setFontSize(40); 
  
// Set the Font Style 
$draw->setFontStyle(\Imagick::STYLE_OBLIQUE); 
  
// Set the text to be added 
$draw->annotation(30, 170, "GeeksForGeeks"); 
  
// Set the image filled color 
$draw->setFillColor('green'); 
  
// Set the font size 
$draw->setFontSize(30); 
  
// Set the text to be added 
$draw->annotation(30, 250, "Oblique Style"); 
  
// Create new Imagick object      
$imagick = new Imagick(); 
  
// Set the image dimension 
$imagick->newImage(350, 300, 'white'); 
  
// Set the image format 
$imagick->setImageFormat("png"); 
  
// Draw the image 
$imagick->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image 
echo $imagick->getImageBlob(); 
?>

輸出:
setFontStyle

程序2:

<?php 
  
// Create an ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the image filled color 
$draw->setFillColor('black'); 
  
// Set the font size 
$draw->setFontSize(30); 
  
// Set Font Style 
$draw->setFontStyle(\Imagick::STYLE_ITALIC); 
  
// Set the text to be added 
$draw->annotation(30, 170, "GeeksForGeeks"); 
  
// Set the image filled color 
$draw->setFillColor('blue'); 
  
// Set the font size 
$draw->setFontSize(25); 
  
// Set the text to be added 
$draw->annotation(30, 250, "Italic Style"); 
  
// Create new Imagick object      
$imagick = new Imagick(); 
  
// Set the image dimension 
$imagick->newImage(350, 300, 'white'); 
  
// Set the image format 
$imagick->setImageFormat("png"); 
  
// Draw the image 
$imagick->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image 
echo $imagick->getImageBlob(); 
?>

輸出:
setFontStyle

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



相關用法


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