if(pathLst != null) for(CTPath2D spPath : pathLst.getPathArray()){
paths.add(new Path(spPath));
}
if(geom.isSetRect()) {
CTGeomRect rect = geom.getRect();
textBounds = new Path();
textBounds.addCommand(
new MoveToCommand(rect.getL().toString(), rect.getT().toString()));
textBounds.addCommand(
new LineToCommand(rect.getR().toString(), rect.getT().toString()));
textBounds.addCommand(
new LineToCommand(rect.getR().toString(), rect.getB().toString()));
textBounds.addCommand(
new LineToCommand(rect.getL().toString(), rect.getB().toString()));
textBounds.addCommand(
new ClosePathCommand());
}
}