Codice PHP:
<?
$width=800;
$height=600;
$image=imagecreate($width,$height);
header("Content-type: image/png");
$sfondo=imagecolorallocate($image,232,228,211);
$bianco=imagecolorallocate($image,255,255,255);
$grigiodx=imagecolorallocate($image,136,140,144);
$grigiosx=imagecolorallocate($image,201,206,211);
$grigioscuro=imagecolorallocate($image,171,176,181);
$nero=imagecolorallocate($image,0,0,0);
$blu=imagecolorallocate($image,0,0,255);
$rosso=imagecolorallocate($image,255,0,0);
$y=0;
$x=0;
for($count=0;$count!=$width*$height;$count++,$x=$x+0.0001){
$y=$x*$x;
imagesetpixel($image,400+$x,300-$y,$nero);
}
$y=0;
$x=0;
for($count=0;$count!=$width*$height;$count++,$x=$x-0.0001){
$y=$x*$x;
imagesetpixel($image,400+$x,300-$y,$nero);
}
//x+
imageline($image,$width/2,$height/2,$width,$height/2,$nero);
//y+
imageline($image,$width/2,$height/2,$width/2,-$width,$nero);
//x-
imageline($image,$width/2,$height/2,0,$height/2,$nero);
//y-
imageline($image,$width/2,$height/2,$width/2,$width,$nero);
imagepng($image);
imagedestroy($image);
?>
Grazie mille per l'aiuto.