PHP GD如何通过一行绘制文本

时间:2013-02-15 11:46:21

标签: php gd

最终输出应该像图像(HELLO WORLD): Ignore the line thickness Please..

以下是我正在做的事情: -

$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

目前的输出如下:

Current output

有人可以告诉我的代码有什么问题吗?

感谢

3 个答案:

答案 0 :(得分:2)

好的,一直在玩。尝试更换:

$texangle = (rad2deg(atan2($delta_y,$delta_x)) * 180 / M_PI)-360;

使用:

$texangle = (atan2($delta_y,$delta_x) * -180 / M_PI)-360;

使用您的值输出:

enter image description here

使用其他值输出:

enter image description here

答案 1 :(得分:1)

这可能不是你想要的东西,但我相信它会帮助你

$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

的角度

答案 2 :(得分:1)

2个想法,现在无法测试。

  1. 其中0(x = 1,y = 0)或(x = 0,y = 1)。看来你的文字已经90了 度数通常意味着你的假设0是直接的, 当它可能是直接向上,反之亦然。

  2. (rad2deg(atan2($delta_y,$delta_x)) * 180 / M_PI)-360;你在这里做双重工作吗? rad2deg从弧度转换为度数。 180 / M_PI也是从弧度到度数的转换。