public function testAddEllipse() { $i = new Gd(__DIR__ . '/../tmp/test.jpg'); $i->setStrokeColor(new Rgb(0, 0, 0))->drawEllipse(10, 10, 100, 100); $i->setBackgroundColor(new Rgb(255, 0, 0)); $i->drawEllipse(10, 10, 100, 100); $i->setFillColor(new Rgb(255, 0, 0)); $i->drawEllipse(10, 10, 100, 100); $this->assertEquals(640, $i->getWidth()); }