📅  最后修改于: 2023-12-03 15:18:23.773000             🧑  作者: Mango
imagecharup()是PHP GD库提供的函数之一,用于在图像中绘制一个上升的字符,即字母向上偏移一位的效果。
bool imagecharup ( resource $image , int $font , int $x , int $y , string $c , int $color )
imagecharup() 函数成功绘制字符时返回 true,否则返回 false。
下面的示例绘制了一个红色的 "A" 字符:
<?php
// 创建空白图像
$image = imagecreate(100, 50);
// 设置背景颜色为白色
$bg_color = imagecolorallocate($image, 255, 255, 255);
imagefill($image, 0, 0, $bg_color);
// 设置字体颜色为红色
$text_color = imagecolorallocate($image, 255, 0, 0);
// 绘制字符
imagecharup($image, 5, 30, 20, 'A', $text_color);
// 输出图像
header('Content-type: image/png');
imagepng($image);
// 释放资源
imagedestroy($image);
?>
输出效果如下: