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


PHP imagecharup()用法及代碼示例


imagecharup()函數是PHP中的內置函數,用於垂直繪製字符。此函數在圖像標識的圖像的x和y軸上繪製字符串的第一個字符。左上角的坐標為(0,0)。

用法:

bool imagecharup( $image, $font, $x, $y, $c, $color )

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


  • $image:它由圖像創建函數之一(例如imagecreatetruecolor())返回。它用於創建圖像的尺寸。
  • $font:此參數用於設置字符的字體大小。對於采用latin2編碼的內置字體,其值可以為1、2、3、4、5。較高的數字表示較大的字體,較小的數字表示較小的字體。
  • $x:此參數用於設置x坐標以在圖像中打印字符。
  • $y:此參數用於設置y坐標以在圖像中打印字符。
  • $c:打印的字符。
  • $color:它設置顏色。由imagecolorallocate()函數創建的顏色標識符。

返回值:成功時此函數返回true,失敗時返回false。

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

程序1:

<?php 
  
// Creates the image size 
$image = imagecreate(400, 300); 
  
$string = 'GeeksForGeeks'; 
  
// Set background color 
$bg = imagecolorallocate($image, 0, 153, 0); 
  
// Set character color 
$white = imagecolorallocate($image, 255, 255, 255); 
  
// prints a white G character 
imagecharup($image, 5, 190, 150, $string, $white); 
  
header('Content-type: image/png'); 
imagepng($image); 
  
?>

輸出:
image

程序2:

<?php 
  
// Create image size 
$image = imagecreate(400, 300); 
  
$string = 'GeeksforGeeks'; 
  
// Find string length 
$len = strlen($string); 
  
// Set background color 
$bg = imagecolorallocate($image, 0, 153, 0); 
  
// Set character color 
$white = imagecolorallocate($image, 255, 255, 255); 
  
// Use loop to print string 
for($i = 0; $i < $len; $i++) 
  
    // Prints a white character $len times 
    imagecharup($image, 6, 190, 230 - 10 * $i, $string[$i], $white); 
  
header('Content-type: image/png'); 
imagepng($image); 
  
?>

輸出:
image

相關文章:

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



相關用法


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