getStrokeColor() public method

Get the stroke color
public getStrokeColor ( ) : mixed
return mixed
Example #1
0
 public function testSetStrokeColor()
 {
     $g = new Graph($this->imageOptions);
     $g->setStrokeColor(new Rgb(128, 128, 128));
     $this->assertEquals(new Rgb(128, 128, 128), $g->getStrokeColor());
 }