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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。