Exemplo n.º 1
0
 public function exampleDrawText($filepath = "Examples/exampleDrawText.dxf")
 {
     $cad = new Drawing();
     $p1 = $cad->addPage("Page 1");
     $cad->drawText($p1, "This is text!", 2, 3, 0.2);
     $dxf = new DxfConverter($cad);
     $dxf->save($filepath);
 }