imageellipse()是PHP中的內建函數,用來繪製橢圓。成功時回傳 True,失敗時回傳 False。
Bool imageellipse($image, $cx, $cy, $width, $height, $color)
imageellipse() 採用六個不同的參數:$image、$ cx、$cy、$寬度、 $高度,$顏色。
< span>$image - 建立映像的大小。它由圖像創建函數之一傳回,例如 imagecreatetruecolor()。
$cx - 設定中心的 x 座標。
$cy - 設定中心的 y 座標。
$width - 設定橢圓寬度。
$height - 設定橢圓高度。
$顏色 -設定橢圓的顏色。由 imagecolorallocate() 函數建立的顏色識別碼。
成功時傳回 True,失敗時傳回 False。
<?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); ?>
<?php //It creates the blank image or size of the image. $image = imagecreatetruecolor(700, 600); //Set the background color of the image. $bg = imagecolorallocate($image, 122, 122, 122); //Fill background with the above-selected color. imagefill($image, 0, 0, $bg); // set color of the ellipse. $col_ellipse = imagecolorallocate($image, 0, 255, 255); // Function to draw the ellipse. imageellipse($image, 250, 300, 300, 550, $col_ellipse); // Output of the image. header("Content-type: image/gif"); imagepng($image); ?>
以上是如何使用PHP中的imageellipse()函數繪製橢圓?的詳細內容。更多資訊請關注PHP中文網其他相關文章!