Draw pie chart : Pie Chart : Chart PHP Source Code


PHP Source Code » Chart » Pie Chart »

 

Draw pie chart



<?php
$myImage = ImageCreate(300,300);

$white = ImageColorAllocate ($myImage, 255255255);
$red  = ImageColorAllocate ($myImage, 25500);
$green = ImageColorAllocate ($myImage, 02550);
$blue = ImageColorAllocate ($myImage, 00255);
$lt_red = ImageColorAllocate($myImage, 255150150);
$lt_green = ImageColorAllocate($myImage, 150255150);
$lt_blue = ImageColorAllocate($myImage, 150150255);

for ($i = 120;$i > 100;$i--) {
    ImageFilledArc ($myImage, 100, $i, 200150090, $lt_red, IMG_ARC_PIE);
    ImageFilledArc ($myImage, 100, $i, 20015090180, $lt_green, IMG_ARC_PIE);
    ImageFilledArc ($myImage, 100, $i, 200150180360, $lt_blue, IMG_ARC_PIE);
}

ImageFilledArc($myImage, 100100200150090, $red, IMG_ARC_PIE);
ImageFilledArc($myImage, 10010020015090180 , $green, IMG_ARC_PIE);
ImageFilledArc($myImage, 100100200150180360 , $blue, IMG_ARC_PIE);

header ("Content-type: image/png");
ImagePNG($myImage);

ImageDestroy($myImage);
?>


           
       



HTML code for linking to this page:

    PHP Function Reference -> Users Code Examples / Notes - > Pie Chart:
  • printer_draw_pie
Follow Navioo On Twitter

PHP Source Code

 Navioo Chart
» Pie Chart