Drawing a Line with imageline() : Line « Graphics Image « PHP






Drawing a Line with imageline()

<?php
 header("Content-type: image/gif");
 $image = imagecreate( 200, 200 );
 $red = imagecolorallocate($image, 255,0,0);
 $blue = imagecolorallocate($image, 0,0,255 );
 imageline( $image, 0, 0, 199, 199, $blue );
 imagegif($image);
?>

           
       








Related examples in the same category

1.Drawing Lines
2.Using imagefill()