Click to get Flash Player
Get Adobe Flash player

or try to enable JavaScript and reload the page

Friday 1 July 2011

creating circle in php

<?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);
?>

No comments:

Post a Comment

thnx