7

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

4

1 回答 1

19

我遇到了这个问题并创建了一个名为的新函数,我已在https://github.com/andrewgjohnson/imagettftextblurimagettftextblur作为开源发布

添加阴影的方法如下:

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);
于 2013-03-20T03:53:47.840 回答