为在PHP中创建的图像赋予边框

前端之家收集整理的这篇文章主要介绍了为在PHP中创建的图像赋予边框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何为使用 PHP创建的图像赋予边框?
function drawBorder(&$img,&$color,$thickness = 1) 
{
    $x1 = 0; 
    $y1 = 0; 
    $x2 = ImageSX($img) - 1; 
    $y2 = ImageSY($img) - 1; 

    for($i = 0; $i < $thickness; $i++) 
    { 
        ImageRectangle($img,$x1++,$y1++,$x2--,$y2--,$color); 
    } 
}

然后用法只是做.

$color = imagecolorallocate($img,255,0);
drawBorder($img,$color,255);
原文链接:https://www.f2er.com/php/132674.html

猜你在找的PHP相关文章