📅  最后修改于: 2023-12-03 15:33:33.067000             🧑  作者: Mango
imagechar()
函数是PHP GD库中的函数之一,用于将一个字符画在图像上。
imagechar ( resource $image , int $font , int $x , int $y , string $c , int $color )
$image
: 图像资源,使用imagecreate()
函数创建。$font
: 字符的字体。目前只有一种内置字体,字体大小为6x8像素。$x
: 字符左上角的横坐标。$y
: 字符左上角的纵坐标。$c
: 待画的字符,只能是1个字符。$color
: 字符的颜色,可以使用imagecolorallocate()
创建。 如果成功,该函数返回TRUE。否则返回FALSE。
// 创建一个300x200像素的空白图像,尺寸可以根据实际情况自己设置
$image = imagecreatetruecolor(300, 200);
// 定义黑色的RGB值
$black = imagecolorallocate($image, 0, 0, 0);
// 在图像上画一个字符A,大小为6x8像素,左上角坐标为(100,100),颜色为黑色
imagechar($image, 1, 100, 100, "A", $black);
// 输出图像
header('Content-Type: image/png');
imagepng($image);
// 销毁图像
imagedestroy($image);
imagecolorallocate()
函数创建。header()
函数设置Content-Type并用imagepng()
或其他图片输出函数输出图像。