如何在PHP GD库中为文本添加边框

前端之家收集整理的这篇文章主要介绍了如何在PHP GD库中为文本添加边框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用带有多色文本的 PHP GD库为文本添加边框,其中文本颜色与边框颜色不同.

你可以参考:

使用以下功能向文本添加边框

你可以在这里检查示例输出http://wmh.github.io/hunbook/examples/gd-imagettftext.html

function imagettfstroketext(&$image,$size,$angle,$x,$y,&$textcolor,&$strokecolor,$fontfile,$text,$px) {
    for($c1 = ($x-abs($px)); $c1 <= ($x+abs($px)); $c1++)
        for($c2 = ($y-abs($px)); $c2 <= ($y+abs($px)); $c2++)
            $bg = imagettftext($image,$c1,$c2,$strokecolor,$text);
   return imagettftext($image,$textcolor,$text);
}
原文链接:https://www.f2er.com/php/133548.html

猜你在找的PHP相关文章