getWidth() публичный Метод

Get the SVG image width.
public getWidth ( ) : integer
Результат integer
Пример #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());
 }