imagettfbbox() 返回一个包含 8 个元素的数组,表示构成文本边界框的四个点
0 左下角,X 坐标
1 左下角,Y 坐标
2 右下角,X 坐标
3 右下角,Y 坐标
4 右上角,X 坐标
5 右上角,Y 坐标
6 左上角,X 坐标
7 左上角,Y 坐标
这些点相对于文本,无论文本角度如何,所以“左上”是指从水平方向查看文本时,位于左上角。
(PHP 4 >= 4.0.7, PHP 5, PHP 7, PHP 8)
imageftbbox — 使用 freetype2 获取文本的边界框
$size
,$angle
,$font_filename
,$string
,$options
= []此函数计算并返回 FreeType 文本的像素边界框。
注意:
在 PHP 8.0.0 之前,imageftbbox() 是 imagettfbbox() 的扩展变体,它还支持
options
。从 PHP 8.0.0 开始,imagettfbbox() 是 imageftbbox() 的别名。
size
以磅为单位的字体大小。
angle
以度为单位的角度,string
将在此角度下进行测量。
font_filename
TrueType 字体文件的名称(可以是 URL)。根据 PHP 使用的 GD 库的版本,它可能会尝试搜索不以引导 '/' 开头的文件,方法是将 '.ttf' 附加到文件名并在库定义的字体路径中搜索。
string
要测量的字符串。
options
键 | 类型 | 含义 |
---|---|---|
linespacing |
float | 定义绘图行间距 |
imageftbbox() 返回一个包含 8 个元素的数组,表示构成文本边界框的四个点
0 | 左下角,X 坐标 |
1 | 左下角,Y 坐标 |
2 | 右下角,X 坐标 |
3 | 右下角,Y 坐标 |
4 | 右上角,X 坐标 |
5 | 右上角,Y 坐标 |
6 | 左上角,X 坐标 |
7 | 左上角,Y 坐标 |
这些点相对于文本,而不管angle
如何,“左上角”是指水平查看文本时的左上角。
失败时,将返回 false
。
示例 #1 imageftbbox() 示例
<?php
// 创建一个 300x150 的图像
$im = imagecreatetruecolor(300, 150);
$black = imagecolorallocate($im, 0, 0, 0);
$white = imagecolorallocate($im, 255, 255, 255);
// 将背景设置为白色
imagefilledrectangle($im, 0, 0, 299, 299, $white);
// 字体文件路径
$font = './arial.ttf';
// 首先我们创建边界框
$bbox = imageftbbox(10, 0, $font, 'The PHP Documentation Group');
// 这是我们 X 和 Y 的坐标
$x = $bbox[0] + (imagesx($im) / 2) - ($bbox[4] / 2) - 5;
$y = $bbox[1] + (imagesy($im) / 2) - ($bbox[5] / 2) - 5;
imagefttext($im, 10, 0, $x, $y, $black, $font, 'The PHP Documentation Group');
// 输出到浏览器
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
?>
注意: 此函数仅在 PHP 使用 freetype 支持编译时可用(--with-freetype-dir=DIR)
imagettfbbox() 返回一个包含 8 个元素的数组,表示构成文本边界框的四个点
0 左下角,X 坐标
1 左下角,Y 坐标
2 右下角,X 坐标
3 右下角,Y 坐标
4 右上角,X 坐标
5 右上角,Y 坐标
6 左上角,X 坐标
7 左上角,Y 坐标
这些点相对于文本,无论文本角度如何,所以“左上”是指从水平方向查看文本时,位于左上角。
此函数可用于生成右对齐文本。只需计算出文本图像的宽度并相应地定位它。示例
$i_width = 200;
$i_height = 40;
$string = "Hello World!";
$pointsize = 10;
$fontfile = "/usr/local/lib/ttf/Helve.ttf";
$im = imagecreate($i_width, $i_height);
$black = imagecolorallocate ($im, 0, 0, 0);
$white = imagecolorallocate ($im, 255, 255, 255);
$string_size = ImageFtBbox($pointsize, 0, $fontfile, $string, array("linespacing" => 1));
$s_width = $string_size[4];
$s_height = $string_size[5];
ImageFtText($im, $pointsize, 0, $i_width - $s_width - 1, 0 - $s_height, $white, $fontfile, $string, array("linespacing" => 1));
Header ("Content-type: image/png");
ImagePNG ($im);
ImageDestroy ($im);
这是一个我用来将“动态文本”居中到图像上的实用示例。
例如,假设您想将客户的 IP 地址居中到图片上。
$ip=$_SERVER['REMOTE_ADDR'];
$details = imageftbbox($fontsize, 0, $font, $ip, array("linespacing" => 1));
$xcoord = ($imgwidth - $details[4]) / 2; // 这将返回相对于特定图像居中的 x 坐标。确保将 $imgwidth 设置为所用图像的宽度。
imagettftext($image, $fontsize, 0, $xcoord, $ycoord, $fontcolor, $font, $ip);
啊……imageftbbox() 和 imagefttext() 之间的问题在于 y 轴的镜像。
下面您可以看到,对于字体大小为 16 的“b”、“p”和“bp”的边界框
< b: w=9 h=15
b(0,-1)
b(9,-1)
b(9,-16)
b(0,-16)
< p: w=9 h=16
p(0,4)
p(9,4)
p(9,-12)
p(0,-12)
< bp: w=20 h=20
bp(0,4)
bp(20,4)
bp(20,-16)
bp(0,-16)
如果使用 imagefttext() 在 y=0 处绘制“bp”,那么“bp”的顶部确实在 y=-16 处,“bp”的底部在 y=4 处。(这里或那里可能会有一个像素的偏差,因为在 y=0 处实际上有一个可见的像素。)
// 示例 - 居中文本
function newText($im, $size, $angle= 0, $x, $y, $color, $font, $text,$align = "left",$border=false,$width=0,$height=0){
if($align == "center")
{
if ($border == true ){
imagerectangle($im, $x, $y, $x +$width, $y + $height, $color);
}
$bbox = imageftbbox($size, 0, $font, $text);
// 标记宽度和高度
$s_width = $bbox[4];
$s_height = $bbox[5];
$y = $y + ($height-$s_height)/2;
$x = $x + ($width-$s_width)/2;
}
imagettftext($im, $size, $angle, $x, $y, $color, $font, $text);
}
对于对齐,我使用了这种方法
if($align == "center" || $align == "right")
{
$verticaltxtspace = $backwidth - (2 * $posx);
$spacepositions = imagettfbbox($size, $angle, "fonts/verdanaz.ttf", " ");
$spacepx = $spacepositions[4] - $spacepositions[0];
// 将文本拆分为行
$lines = split("[\r][\n]", $text);
for($count = 0; $count < count($lines); $count++)
{
$textpositions = imagettfbbox($size, $angle, "fonts/verdanaz.ttf", $lines[$count]);
$textpx = $textpositions[2] - $textpositions[0];
if($align == "right")
{
$spaces = ($verticaltxtspace - $textpx) / $spacepx;
}
else if($align == "center")
{
$spaces = (($verticaltxtspace - $textpx)/2) / $spacepx;
}
// 添加空格
$line = $lines[$count];
for($i = 0; $i < $spaces; $i++)
{
$line = " " . $line;
}
$lines[$count] = $line;
}
// 创建新文本行
$text = "";
for($count = 0; $count < count($lines); $count++)
{
$text .= $lines[$count] . "\r\n";
}
}
// 在阴影上绘制阴影文本
imagettftext($background, $size, $angle, $posx, $posy, $textcolor, "fonts/verdanaz.ttf", $text);
我找到了解决此问题的变通方法
似乎高度与行距成正比,因此您只需将相同的系数应用于图像高度即可
例如
$spacing = 0.7;
$params = array("linespacing" => $spacing);
$box = imageftbbox ($size, 0, $font, $text, $params);
$tw=$box[4]-$box[0]; // 图像宽度
$th=($box[1]-$box[5])*$spacing; // 图像高度
ImageFTBBox 返回的是边界框,而不是度量,正如上面一些(大多数?)注释所假设的那样。它返回的 8 个值指定了此边界框的 4 个角。因此,要正确确定字符串的宽度和高度,您需要执行以下操作
$bbox = ImageFTBBox(...);
$width = abs($bbox[0]) + abs($bbox[2]); // 从左到右的距离
$height = abs($bbox[1]) + abs($bbox[5]); // 从上到下的距离