#metodo para gregarle tamaño color
```
private Text formatText(String texto, String fuente) {
Text text = new Text(texto);
if (fuente.equals("P1")) {
return text.setFontColor(Color.BLACK).setFont(PdfFontFactory.createFont(FontConstants.HELVETICA)).setFontSize(9.0).setBold();
} else if (fuente.equals("P2")) {
return text.setFontColor(Color.BLACK).setFont(PdfFontFactory.createFont(FontConstants.HELVETICA)).setFontSize(10.0);
}else if (fuente.equals("P3")) {
return text.setFontColor(Color.BLACK).setFont(PdfFontFactory.createFont(FontConstants.HELVETICA)).setFontSize(9.0).setBold().setUnderline();
}
return text;
}
```