imagechar()函數是PHP中的內置函數,用於水平繪製字符。此函數在x和y軸圖像標識的圖像中繪製字符串的第一個字符。左上角的坐標為(0,0)。
用法:
bool imagechar( $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中的imagechar()函數:
程序1:
<?php
// Creates image size
$image = imagecreate(400, 300);
$string = 'GeeksForGeeks';
// Set background color
$bg = imagecolorallocate($image, 0, 153, 0);
// Set text color.
$white = imagecolorallocate($image, 255, 255, 255);
// Prints a white G character
imagechar($image, 5, 190, 150, $string, $white);
header('Content-type: image/png');
imagepng($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 text color
$white = imagecolorallocate($image, 255, 255, 255);
for($i = 0; $i < $len; $i++)
// Prints white character of string using loop
imagechar($image, 6, 190 + 10 * $i, 150, $string[$i], $white);
header('Content-type: image/png');
imagepng($image);
?>
輸出:
相關文章:
參考: http://php.net/manual/en/function.imagechar.php
相關用法
- PHP pow( )用法及代碼示例
- PHP each()用法及代碼示例
- PHP next()用法及代碼示例
- p5.js day()用法及代碼示例
- CSS var()用法及代碼示例
- p5.js pow()用法及代碼示例
- p5.js sq()用法及代碼示例
- d3.js d3.map.has()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP pi( )用法及代碼示例
- p5.js hex()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | imagechar() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。