英文:
Trying to merge 2 PDF files and be ADA compliant
问题
I need to create a merged PDF file in C#. This is checked in Adobe Acrobat Pro to see if it's ADA compliant. Here is my code. I am using iTextSharp to create the file.
英文:
I need to create a merged PDF file in C#. This is checked in Adobe Acrobat Pro to see if its ADA compliant. Here is my code. I am using iTextSharp to create the file.
答案1
得分: 1
你的代码似乎存在多个错误:
- PDF阅读器没有关闭。
- 你正在使用itextsharp.text.image -- 这会获取不符合ADA标准的图像。
你可以使用此参考链接中提到的解决方案:https://www.c-sharpcorner.com/article/merge-number-of-pdf-into-a-single-pdf-using-itextsharp/
英文:
Your code seems to have multiple errors
- PDF reader is not closed.
- You are using itextsharp.text.image -- which will get the image that is not ADA-compliant.
You can use the solution mentioned in this ref link: https://www.c-sharpcorner.com/article/merge-number-of-pdf-into-a-single-pdf-using-itextsharp/
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论