我使用 PdfContentByte 在 pdf 中显示文本,因为我还使用 SetTextMatrix mathod 来定位该文本,现在当我的文本很大时它不会显示在 pdf 中显示我可以包装文本显示我可以在下面看到它是我的代码
PdfContentByte cb = myPDFWriter.DirectContent;
cb.BeginText();
BaseFont bf_qty123 = BaseFont.CreateFont(BaseFont.TIMES_ROMAN, BaseFont.CP1252, false);
cb.SetFontAndSize(bf_qty123, 10f);
cb.SetTextMatrix(422,100);
cb.ShowText("longstring");
cb.EndText();