PHP GD如何在一行中绘制文本
最终的输出应该像image(HELLO WORLD):
这是我在做什么: -
$im = imagecreate(400,400);
$txtcol = imagecolorallocate($im, 0xFF, 0x00, 0x00);
$size = 20;
$txt = 'DUMMY TEXT';
$font = './font/Capriola-Regular.ttf';
/*two points for base line*/
$x1 = 50; $x2 = 300;
$y1 = 150; $y2 = 170;
/*bof finding line angle*/
$delta_x = $x2-$x1;
$delta_y = $y2-$y1;
$texangle = (rad2deg(atan2($delta_y,$delta_x)) * 180 / M_PI)-360;
/*eof finding the line angle*/
imageline($im,$x1,$y1,$x2,$y2,$txtcol); //Drawing line
imagettftext($im, $size, $texangle, $x1, $y1, $txtcol, $font, $txt); // Drawing text over line at line's angle
目前的产出如下:
任何人都可以告诉我的代码有什么问题吗?
谢谢
好的,一直在玩。 尝试更换:
$texangle = (rad2deg(atan2($delta_y,$delta_x)) * 180 / M_PI)-360;
附:
$texangle = (atan2($delta_y,$delta_x) * -180 / M_PI)-360;
输出您的值:
用其他值输出:
2个想法,现在不能测试。
0(x = 1,y = 0)或(x = 0,y = 1)在哪里。 看起来你的文本已经偏离了90度,这通常意味着你的假设0是直接正确的,当它可能是直接上升的时候,反之亦然。
(rad2deg(atan2($delta_y,$delta_x)) * 180 / M_PI)-360;
你在这里做双重工作吗? rad2deg
将弧度转换为度数。 180 / M_PI
也是从弧度到度数的转换。
这不是你可能要找的确切的东西,但我相信它会帮助你
$im = imagecreate(400,400);
$txtcol = imagecolorallocate($im, 0xFF, 0xFF, 0x00);
$size = 20;
$txt = 'DUMMY TEXT';
$font = 'Capriola-Regular.ttf';
/*two points for base line*/
$x1 = 70; $x2 = 170;
$y1 = 140; $y2 = 240;
/*bof finding line angle*/
$delta_x = $x2-$x1;
$delta_y = $y2-$y1;
$texangle = (rad2deg(atan2($delta_y,$delta_x)) * 180 / M_PI)-360;
/*eof finding the line angle*/
imageline($im,$x1,$y1,$x2,$y2,'0xDD'); //Drawing line
imagettftext($im, $size, -45, $x1, $y1-10, '0xDD', $font, $txt); // Drawing text over line at line's angle
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
值是硬编码的。 这里的角度是-45,如果你希望你的文本出现在行的上方,那么你必须减少行的初始Y位置的值。 你将不得不编写代码来用线条x1,x2y1,y2来计算角度
链接地址: http://www.djcxy.com/p/11825.html