<?php
$im = ImageCreate(250,200);
$white = ImageColorAllocate ($im, 255, 255, 255);
$red = ImageColorAllocate ($im, 255, 0, 0);
$green = ImageColorAllocate ($im, 0, 255, 0);
$blue = ImageColorAllocate ($im, 0, 0, 255);
ImageFilledArc($im, 120, 100, 200, 150, 0, 90, $green, IMG_ARC_PIE);
ImageFilledArc($im, 120, 100, 200, 150, 90, 180 , $red, IMG_ARC_PIE);
ImageFilledArc($im, 120, 100, 200, 150, 180, 360 , $blue, IMG_ARC_PIE);
echo "<img src=MyResize/image.png>";
ImagePNG($im,"MyResize/image.png");
ImageDestroy($im);
?>