是否可以在GD中为文本添加光晕或阴影?目前我正在使用imagettftext函数。
答案 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);