imagearc

Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Draws an arc
<?php imagearc(    GdImage $image,    int $center_x,    int $center_y,    int $width,    int $height,    int $start_angle,    int $end_angle,    int $color): bool
<?php             imagesetthickness($image->getCore(), $this->border_width);




            imagearc($image->getCore(), $x, $y, $this->width, $this->height, 0, 359.99, $border_color->getInt());

        } else {

            imagefilledellipse($image->getCore(), $x, $y, $this->width, $this->height, $background->getInt());

        }