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


PHP imagestringup()用法及代碼示例


imagestringup()函數是PHP中的內置函數,用於垂直繪製字符串。

用法:

bool imagestringup( $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中的imagestringup()函數:

示例1:

<?php 
  
// Create a 400*300 image 
$im = imagecreatetruecolor(400, 300); 
  
// Set the background color of image  
$background_color = imagecolorallocate($im,  0, 153, 0);  
       
// Fill background with above selected color  
imagefill($im, 0, 0, $background_color);  
  
// Write the text 
$textcolor = imagecolorallocate($im, 255, 255, 255); 
imagestringup($im, 6, 195, 200, 'GeeksforGeeks', $textcolor); 
  
// Output the picture to the browser  
header('Content-type: image/png');  
       
imagepng($im);  
?>

輸出:

示例2:

<?php 
  
// Create a 400*300 image 
$im = imagecreatetruecolor(400, 300); 
  
// Set the background color of image  
$background_color = imagecolorallocate($im,  0xFF, 0xFF, 0xFF);  
       
// Fill background with above selected color  
imagefill($im, 0, 0, $background_color);  
  
// Write the text 
$textcolor = imagecolorallocate($im, 0, 153, 0); 
imagestringup($im, 6, 195, 200, 'GeeksforGeeks', $textcolor); 
  
// Output the picture to the browser  
header('Content-type: image/png');  
       
imagepng($im);  
?>

輸出:

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



相關用法


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