readTestImage('trim.png'); $this->assertEquals('00aef0', $image->pickColor(14, 14)->toHex()); $drawable = new Bezier([ new Point(0, 0), new Point(15, 0), new Point(15, 15), new Point(0, 15) ]); $drawable->setBackgroundColor('b53717'); $image->modify(new DrawBezierModifier($drawable)); $this->assertEquals('b53717', $image->pickColor(5, 5)->toHex()); } }