如何在PHP的GD库中为文本添加发光或阴影?

时间:2013-03-20 03:53:48

标签: php gd

是否可以在GD中为文本添加光晕或阴影?目前我正在使用imagettftext函数。

1 个答案:

答案 0 :(得分:17)

我遇到了这个问题并创建了一个名为imagettftextblur的新函数,我在https://github.com/andrewgjohnson/imagettftextblur

作为开源发布了这个函数

以下是添加阴影的方法:

imagettftextblur($image,$size,0,$x + 3,$y + 3,$shadow_color,$font,$string,1); // 1 can be higher to increase blurriness of the shadow
imagettftextblur($image,$size,0,$x,$y,$text_color,$font,$string);