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


PHP imageloadfont()用法及代碼示例


imageloadfont()函數是PHP中的內置函數,用於加載新字體。支持GDF字體,可以從此處下載。

用法:

int imageloadfont( string $file )

參數:該函數接受一個包含字體的單個參數$file。


返回值:此函數返回的字體標識符始終大於5,以避免與內置字體或錯誤時為FALSE衝突。

下麵給出的程序說明了PHP中的imageloadfont()函數:

程序1(在圖紙上書寫):

<?php 
  
// Create a new image instance 
$im = imagecreatetruecolor(105, 15); 
  
// Prepare the colors 
$black = imagecolorallocate($im, 0, 0, 0); 
$white = imagecolorallocate($im, 255, 255, 255); 
  
// Make the background white 
imagefilledrectangle($im, 0, 0, 700, 250, $white); 
  
// Load the gd font from local folder 
// and write 'GeeksforGeeks' 
$font = imageloadfont('./Hollow_8x16_LE.gdf'); 
imagestring($im, $font, 0, 0, 'GeeksforGeeks', $black); 
  
// Scale the image bigger 
$im1 = imagescale($im, 700); 
  
// Output to browser 
header('Content-type:image/png'); 
imagepng($im1); 
imagedestroy($im); 
?>

輸出:

程序2(在圖像上書寫):

<?php 
  
// Create an image instance 
$im = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Prepare the red color 
$red = imagecolorallocate($im, 255, 0, 0); 
  
// Load the gd font from local folder and write 'GeeksforGeeks' 
$font = imageloadfont('./Hollow_8x16_LE.gdf'); 
imagestring($im, $font, 200, 100, 'GeeksforGeeks', $red); 
  
// Output to browser 
header('Content-type:image/png'); 
imagepng($im); 
imagedestroy($im); 
?>

輸出:

參考: https://www.php.net/manual/en/function.imageloadfont.php



相關用法


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