imagecharup

(PHP 4, PHP 5, PHP 7, PHP 8)

imagecharup垂直绘制字符

说明

imagecharup(
    GdImage $image,
    GdFont|int $font,
    int $x,
    int $y,
    string $char,
    int $color
): bool

在给定 image 上的指定坐标处垂直绘制字符 char

参数

image

一个 GdImage 对象,由图像创建函数(如 imagecreatetruecolor())返回。

font

可以是 1、2、3、4、5,表示 latin2 编码中的内置字体(数字越大,字体越大),也可以是 GdFont 实例,由 imageloadfont() 返回。

x

起点的 x 坐标。

y

起点的 y 坐标。

char

要绘制的字符。

color

使用 imagecolorallocate() 创建的颜色标识符。

返回值

成功返回 true,失败返回 false

变更日志

版本 说明
8.1.0 font 参数现在既可以接受 GdFont 实例,也可以接受 int;以前只接受 int
8.0.0 image 现在期望一个 GdImage 实例;以前,期望一个有效的 gd resource

范例

示例 #1 imagecharup() 示例

<?php

$im
= imagecreate(100, 100);

$string = '注意第一个字母是 N';

$bg = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);

// 在白色背景上打印黑色“Z”
imagecharup($im, 3, 10, 10, $string, $black);

header('Content-type: image/png');
imagepng($im);

?>

上面的例子将输出类似于

Output of example : imagecharup()

参见

添加注释

用户贡献注释 1 条注释

php at corzoogle dot com
19 年前
<?php
// 难以置信,没有人添加过这个。
// 在图像上垂直写入一行文本..
// ;o)

$string = '(c) corz.org';
$font_size = 2;
$img = imagecreate(20,90);
$bg = imagecolorallocate($img,225,225,225);
$black = imagecolorallocate($img,0,0,0);

$len = strlen($string);
for (
$i=1; $i<=$len; $i++) {
imagecharup($img, $font_size, 5, imagesy($img)-($i*imagefontwidth($font_size)), $string, $black);
$string = substr($string,1);
}
header('Content-type: image/png');
imagepng($img);
imagedestroy($img); // 伙计们!别忘了这个!
?>
To Top