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


PHP imagestring()用法及代碼示例


imagestring()函數是PHP中的內置函數,用於水平繪製字符串。此函數在給定位置繪製字符串。

用法:

bool imagestring( $image, $font, $x, $y, $string, $color )

參數:該函數接受上述和以下所述的六個參數:


  • $image:imagecreatetruecolor()函數用於創建給定尺寸的空白圖像。
  • $font:此參數用於設置字體大小。使用latin2編碼的內置字體可以是1、2、3、4、5或使用imageloadfont()函數注冊的其他字體標識符。
  • $x:此參數用於保存左上角的x坐標。
  • $y:此參數用於保留左上角的y坐標。
  • $string:此參數用於保存要寫入的字符串。
  • $color:此參數用於保留圖像的顏色。

返回值:如果成功,則此函數返回TRUE;如果失敗,則返回FALSE。

以下示例程序旨在說明PHP中的imagestring()函數。
程序1:

<?php 
   
// Create the size of image or blank image 
$image = imagecreate(500, 300); 
   
// Set the background color of image 
$background_color = imagecolorallocate($image, 0, 153, 0); 
   
// Set the text color of image 
$text_color = imagecolorallocate($image, 255, 255, 255); 
   
// Function to create image which contains string. 
imagestring($image, 5, 180, 100,  "GeeksforGeeks", $text_color); 
imagestring($image, 3, 160, 120,  "A computer science portal", $text_color); 
   
header("Content-Type: image/png"); 
   
imagepng($image); 
imagedestroy($image); 
?>

輸出:
create image function

程序2:

<?php 
  
// Create the size of image or blank image 
$image = imagecreate(500, 300); 
  
// Set the background color of image 
$background_color = imagecolorallocate($image, 255, 255, 255); 
  
// Set the text color of image 
$text_color = imagecolorallocate($image, 0, 153, 0); 
  
// Function to create image which contains string. 
imagestring($image, 5, 50, 100,  
     "GeeksforGeeks: A computer science portal", $text_color); 
  
header("Content-Type: image/png"); 
  
imagepng($image); 
imagedestroy($image); 
?>

輸出:
imagestring function

相關文章:

參考: http://php.net/manual/en/function.imagestring.php



相關用法


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