Drawing a Circle : Circle : Graphics Image PHP Source Code


PHP Source Code » Graphics Image » Circle »

 

Drawing a Circle



<?php
     header ("Content-type: image/png");
   
     $im = ImageCreate (150150);
     $grey = ImageColorAllocate ($im, 230230230);
     $black = ImageColorAllocate ($im, 000);
   
     ImageString($im, 355"Figure 18.5: Circle", $black);
     ImageArc($im, 757550500360, $black);
     ImagePng ($im);
     ImageDestroy ($im);
?>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Graphics Image
» Circle