getWidth() public method

Get the SVG image width.
public getWidth ( ) : integer
return integer
Exemplo n.º 1
0
 public function testBorder()
 {
     $s = new Svg('graph.svg', '640px', '480px');
     $s->setStrokeWidth(5, 6, 4);
     $s->border(5);
     $this->assertEquals(640, $s->getWidth());
 }