Rumah > Artikel > pembangunan bahagian belakang > Bagaimana untuk melukis elips menggunakan fungsi imageellipse() dalam PHP?
imageellipse() ialah fungsi terbina dalam PHP untuk melukis elips. Mengembalikan Benar pada kejayaan dan Salah pada kegagalan.
Bool imageellipse($image, $cx, $cy, $width, $height, $color)
imageellipse(): Mengambil enam parameter berbeza #$imej, $ cx, $#🎜 #🎜, #cy $lebar, $tinggi, #🎜🎜 #warna. $
imej$
cx$
cy$
lebar$
height$
ColorNilai pulangan Mengembalikan Benar pada kejayaan dan Salah apabila gagal.
<?php // Create a blank image. $image = imagecreatetruecolor(700, 350); // Select the background color. $bg = imagecolorallocate($image, 0, 0, 0); // Fill the background with the color selected above. imagefill($image, 0, 0, $bg); // Choose a color for the ellipse. $col_ellipse = imagecolorallocate($image, 255, 255, 255); // Draw the ellipse. imageellipse($image, 325, 175, 500, 175, $col_ellipse); // Output the image. header("Content-type: image/png"); imagepng($image); ?>
Atas ialah kandungan terperinci Bagaimana untuk melukis elips menggunakan fungsi imageellipse() dalam PHP?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!