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


PHP Imagick setFont()用法及代碼示例


Imagick::setFont()函數是PHP中的內置函數,用於設置字體。

用法:

bool Imagick::setFont( string $font )

參數:該函數接受單個參數$font,該參數保存字體文件的名稱。


返回值:成功時此函數返回TRUE。

擴展程序:為此函數需要安裝GD擴展程序。

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

程序1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Use setFont() function to set the 
// font using .ttf font file. The .ttf 
// file is placed in same folder 
$imagick->setFont('Windsong.ttf');  
  
// Write a caption in image format 
$imagick->newPseudoImage(800, 350, "caption:GeekforGeeks"); 
  
// Show the output 
$imagick->setformat('png'); 
  
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Set the font - make sure .ttf font file  
// is placed in same folder 
$imagick->setFont('FFF_Tusj.ttf');  
  
// Write the caption in a image 
$imagick->newPseudoImage(800, 350, "caption:GeekforGeeks"); 
  
// Show the output 
$imagick->setformat('png'); 
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

參考: https://www.php.net/manual/en/imagick.setfont.php



相關用法


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