GDのテキストにグローやシャドウを追加することは可能ですか?現在、imagettftext関数を使用しています。
質問する
9042 次
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 に答える