imageline() 函数用于绘制一条线段。
语法:
bool imageline( resource image, int x1, int y1, int x2, int y2, int color )
用 color 颜色在图像 image 中从坐标 x1,y1 到 x2,y2(图像左上角坐标为 0,0)画一条线段。
例子:
<?php header("Content-type: image/png"); $im = @imagecreate(300, 300)or die("创建图像资源失败"); $bg = imagecolorallocate($im, 204, 204, 204); $red = imagecolorallocate($im, 255, 0, 0); imageline($im,0,30,200,30,$red); imagepng($im); imagedestroy($im); ?>