$i = imageCreate(250, 120);
$color = imageColorAllocate($i,255,255,255);
$color = imageColorAllocate($i, 0, 0, 0);
imageSetThickness($i, 1);
imageLine($i,200, 15, 180, 40, $color);
Header("Content-type: image/jpeg");
imageJpeg($i);
imageDestroy($i);
<?php
for($i=0;$i<10;++$i){
$y1 = mt_rand(10,110);
$x1 = mt_rand(3,10);
$y2 = mt_rand(10,110);
$x2 = mt_rand(110,117);
$color = imageColorAllocate($i, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));
imageLine($i, $x1, $y1 , $x2 , $y2 , $color);
}?>