= 4.0.6, PHP 5, PHP 7, PHP 8)imagefilledellipse — 畫一橢圓并填充說明imagefilledellipse( resource $image, int $cx, int $cy, ">
(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
imagefilledellipse — 畫一橢圓并填充
$image
,$cx
,$cy
,$width
,$height
,$color
畫一橢圓并填充到指定的 image
。
image
由圖象創(chuàng)建函數(shù)(例如imagecreatetruecolor())返回的 GdImage 對象。
cx
中央的 x 坐標。
cy
中央的 y 坐標。
width
橢圓的寬度。
height
橢圓的高度。
color
要填充的顏色。顏色標識由函數(shù) imagecolorallocate() 創(chuàng)建。
成功時返回 true
, 或者在失敗時返回 false
。
示例 #1 imagefilledellipse() 例子
<?php
// create a blank image
$image = imagecreatetruecolor(400, 300);
// fill the background color
$bg = imagecolorallocate($image, 0, 0, 0);
// choose a color for the ellipse
$col_ellipse = imagecolorallocate($image, 255, 255, 255);
// draw the white ellipse
imagefilledellipse($image, 200, 150, 300, 200, $col_ellipse);
// output the picture
header("Content-type: image/png");
imagepng($image);
?>
以上例程的輸出類似于: