Drawing Lines : Line : Graphics Image PHP Source Code


PHP Source Code » Graphics Image » Line »

 

Drawing Lines



<?php
     header ("Content-type: image/png");
   
     $im = ImageCreate (150150);
     $grey = ImageColorAllocate ($im, 230230230);
     $black = ImageColorAllocate ($im, 000);
   
     ImageLine($im, 030150150, $black);
     ImageLine($im, 015015030, $black);
     ImageLine($im, 03015030, $black);
   
     ImageString($im, 355"Figure 18.6: Lines", $black);
     ImagePng ($im);
     ImageDestroy ($im);
?>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Graphics Image
» Line