PopTest\Image\ImagickTest::testAddEllipse PHP Method

testAddEllipse() public method

public testAddEllipse ( )
    public function testAddEllipse()
    {
        $i = new Imagick(__DIR__ . '/../tmp/test.jpg');
        $i->setStrokeColor(new Rgb(0, 0, 0))->setStrokeWidth(5)->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());
    }