Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的项目中使用 iTextSharp 来生成 PDF。一切正常。但是生成的 PDF 版本是 1.4。我需要 PDF 版本 1.3。我正在使用最新版本的 iTextSharp。有什么解决方法吗?
这不像其他解决方案中建议的那样工作
_PdfWriter.SetPdfVersion(PdfWriter.PDF_VERSION_1_3)
这确实有效
_PdfWriter.PdfVersion = PdfWriter.VERSION_1_3;