drawCircle() публичный Метод

Method to add a circle to the image.
public drawCircle ( integer $x, integer $y, integer $w ) : Gd
$x integer
$y integer
$w integer
Результат Gd
Пример #1
0
 public function testAddCircle()
 {
     $i = new Gd(__DIR__ . '/../tmp/test.jpg');
     $i->drawCircle(10, 10, 100);
     $this->assertEquals(640, $i->getWidth());
 }