此库函数对于仅包含文本的可变大小图像非常有用,例如我用于输出导致缩略图生成器致命错误的累积错误消息的函数
<?php
function errimg($error) {
$font_size = 2;
$text_width = imagefontwidth($font_size);
$text_height = imagefontheight($font_size);
$width = 0;
$height = count($error);
for($x = 0; $x < count($error); $x++) {
if(strlen($error[$x]) > $width) {
$width = strlen($error[$x]);
}
}
$width = $width * $text_width;
$height = $height * $text_height;
$im = imagecreatetruecolor($width + ( 2 * $text_width ),
$height + ( 2 * $text_height ) );
if($im) {
$text_color = imagecolorallocate($im, 233, 14, 91);
for($x = 0; $x < count($error); $x++) {
imagestring($im, $font_size, $text_width,
$text_height + $x * $text_height, $error[$x],
$text_color);
}
out($im, array(), $error);
} else {
$error[] = "Is GD Installed?";
die(var_dump($error));
}
}
?>
该函数期望传入一个包含错误消息的数组,然后输出一个包含数组内容的图像。如果你的代码包含在一个 html 页面中,该页面将在图像无法正确渲染时显示 rexes,这将特别有用。
此函数以图像形式显示数组,索引 0 在顶部,最高索引在底部。
但是,你必须自己编写 out(),请参阅 imagejpeg、imagepng 等,了解如何编写一个不错的输出函数。