PHP imageline 图像GD库函数

  • 定义和用法

    imageline - 画一条线段
  • 版本支持

    PHP4 PHP5 PHP7
    支持 支持 支持
  • 语法

    imageline ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color )
    
    imageline() 用 color 颜色在图像 image 中从坐标 x1,y1 到 x2,y2(图像左上角为 0, 0)画一条线段。
  • 参数

    参数 必需的 描述
    image 由图象创建函数(例如 imagecreatetruecolor() )返回的图象资源。
    x1 起点x坐标
    y1 起点y坐标
    x2 终点x坐标
    y2 终点y坐标
    color 颜色 一般由imagecolorallocate()函数创建。
  • 返回值

    成功返回图像资源标识符,失败返回FALSE。
  • 示例

    function imagelinethick($image, $x1, $y1, $x2, $y2, $color, $thick = 1)
    {
            /* 下面两行只在线段直角相交时好使
            imagesetthickness($image, $thick);
            return imageline($image, $x1, $y1, $x2, $y2, $color);
            */
            if ($thick == 1) {
                    return imageline($image, $x1, $y1, $x2, $y2, $color);
            }
            $t = $thick / 2 - 0.5;
            if ($x1 == $x2 || $y1 == $y2) {
                    return imagefilledrectangle($image, round(min($x1, $x2) - $t), round(min($y1, $y2) - $t), round(max($x1, $x2) + $t), round(max($y1, $y2) + $t), $color);
            }
            $k = ($y2 - $y1) / ($x2 - $x1); //y = kx + q
            $a = $t / sqrt(1 + pow($k, 2));
            $points = array(
                    round($x1 - (1+$k)*$a), round($y1 + (1-$k)*$a),
                    round($x1 - (1-$k)*$a), round($y1 - (1+$k)*$a),
                    round($x2 + (1+$k)*$a), round($y2 - (1-$k)*$a),
                    round($x2 + (1-$k)*$a), round($y2 + (1+$k)*$a),
            );
            imagefilledpolygon($image, $points, 4, $color);
            return imagepolygon($image, $points, 4, $color);
    }
    
    $im =  imagecreatetruecolor(300,300);
    $color = imagecolorallocate($im,253,128,38);
    imagelinethick($im,25,25,100,100,$color);
    header('Content-Type:image/png');
    imagepng($im);
    imagedestroy($im);
    
    以上示例输出:
    gd_33      
    
  • 相关函数

    imagecreatetruecolor() - 新建一个真彩色图像
    imagecolorallocate() - 为一幅图像分配颜色。