我已经使用PHP GD成像库成功地将文本(由2-3位数字组成)输出到图像上。接下来,我想定位此文本并将其置于图像中包含的标签下。我现在通过查看图像和硬编码位置值来使用它,但这并不理想,因为数字变化,并且每次运行代码时长度可能不同。
以下是我到目前为止的简化版本:
<?php
$font = 'arial.ttf';
$fontsize = 60;
$value1 = $_GET['r'];
$value2 = $_GET['rm'];
$value3 = $_GET['w'];
$image = imagecreatefrompng('image.png');
$fontcolor = imagecolorallocate($image, 255, 255, 255);
$x1 = 80;
$x2 = 160;
$x3 = 280;
$y = 1050;
imagettftext($image, $fontsize, 0, $x1, $y, $fontcolor, $font, $value1);
imagettftext($image, $fontsize, 0, $x2, $y, $fontcolor, $font, $value2);
imagettftext($image, $fontsize, 0, $x3, $y, $fontcolor, $font, $value3);
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>
我相信我需要使用imagettfbbox,但如何根据图片中的标签来定位框?
是否可以为每个标签设置一个主要位置(因为它们永远不会移动)并根据该标签的中心设置,无论数字的长度是多少?例如,如果输入了一个4位数字,它将显示在与其标签下方居中的2位数字相同的位置。
答案 0 :(得分:0)
Box sizing给了我奇怪的结果,所以我通过创建一个计算每个数字中的位数并发回位置变量的函数来解决这个问题。
function position($value, $pos) {
$length = strlen((string)$value);
return $pos - (20 * $length);
}
$value1 = $_GET['r'];
$value2 = $_GET['rm'];
$value3 = $_GET['w'];
$x1 = position($value1, 110);
$x2 = position($value2, 310);
$x3 = position($value3, 545);
$y = 1050;
imagettftext($image, $fontsize, 0, $x1, $y, $fontcolor, $font, $value1);
imagettftext($image, $fontsize, 0, $x2, $y, $fontcolor, $font, $value2);
imagettftext($image, $fontsize, 0, $x3, $y, $fontcolor, $font, $value3);