Bugün yayınlayacağımız çalışma php de grafik ile oluşturulmuş iç içe daire tasarımını kapsıyor.Daire renkleri Random bir şekilde ayarlanmış.
ÇALIŞMANIN NOT DEFTERİ GÖRÜNÜMÜ
ÇALIŞMA KODLARI
<?php
header("content-type:image/gif");
$resim=imagecreate(400,400);
imagecolorallocate($resim,255,255,255);
$a=0;
for($x=400;$x>0;$x-=50)
{
$a++;
if($a%2==0)
{
$renk1=imagecolorallocate($resim,rand(0,255),rand(0,255),rand(0,255));
$color=$renk1;
imagefilledellipse($resim,200,200,$x,$x,$color);
}
else
{
$renk2=imagecolorallocate($resim,rand(0,255),rand(0,255),rand(0,255));
$color=$renk2;
imagefilledellipse($resim,200,200,$x,$x,$color);
}
}
imagegif($resim);
imagedestroy($resim);
?>
Yorumlar
Yorum Gönder