我使用以下代码的PDFBox:

doc = new PDDocument();
page = new PDPage();

doc.addPage(page);
PDFont font = PDType1Font.COURIER;

pdftitle = new PDPageContentStream(doc, page);
pdftitle.beginText();
pdftitle.setFont( font, 12 );
pdftitle.moveTextPositionByAmount( 40, 740 );
pdftitle.drawString("Here I insert a lot of text");
pdftitle.endText();
pdftitle.close();

有谁知道我可以如何包装文本,使其自动转到另一行?

最佳答案

我认为无法自动换行。但是您可以自己包装文本。参见How to Insert a Linefeed with PDFBox drawStringHow can I create fixed-width paragraphs with PDFbox?

10-05 19:40