Beispiel #1
0
 /**
  * Draw a circle centered at given coordinates
  *
  * @param string $color
  * @param integer $x
  * @param integer $y
  * @param integer $radius
  * @param boolean $filled
  * @return \Intervention\Image\Image 
  * @static 
  */
 public static function circle($color, $x = 0, $y = 0, $radius = 10, $filled = true)
 {
     return \Intervention\Image\Image::circle($color, $x, $y, $radius, $filled);
 }