Wenas
Siempre podras, sabiendo la longitud maxima que cabe en cada linea del pdf para tu fuente, cortar el string, tal que, si es mayor poder hacer un salto de linea manual y colocar el resto del texto.
Código PHP:
private void escribeTexto(String texto, int longitud, float x, float y) {
if (texto.length() <= longitud)
showTextAligned(Element.ALIGN_LEFT,texto, x, y, 0);
else
{
String aux = texto;
while (aux.length() > longitud)
{
showTextAligned(Element.ALIGN_LEFT,aux.substring(0,longitud), x, y, 0);
y--; (o y++ no se si tienes que decrementar o incrementar)
aux = aux.substring(longitud,aux.length());
}
showTextAligned(Element.ALIGN_LEFT,texto, x, y, 0);//el ultimo trozo
}
}
Bueno, mas o menos.
Saludos.