Beispiel #1
0
 /**
  * Draw an ellipse centered at given coordinates.
  *
  * @param string $color
  * @param integer $pos_x
  * @param integer $pos_y
  * @param integer $width
  * @param integer $height
  * @return \Intervention\Image\Image 
  * @static 
  */
 public static function ellipse($color, $pos_x = 0, $pos_y = 0, $width = 10, $height = 10, $filled = true)
 {
     return \Intervention\Image\Image::ellipse($color, $pos_x, $pos_y, $width, $height, $filled);
 }