字典不包含所需的键:页面
The dictionary does not contain required key: Pages
我正在尝试使用 PDFNetPython3 将 pdf 转换为 pdf/a。但是我收到以下错误。
主要错误信息:
字典不包含所需的关键字:Pages
根据 PDFNetPython3 文档。
from PDFNetPython3 import PDFNet, PDFACompliance
# ... some necessary code like temp_file_path_in (this is not null and has values of file_object)
pdf_a = PDFACompliance(True, tmp_file_path_in, None, PDFACompliance.e_Level2B, 0, 0, 10)
也试过使用这个(得到同样的错误):
pdf_a = PDFACompliance(True, filename, None, PDFACompliance.e_Level2B, 0, 10)
我想知道此页面是否与 pdf 页码或总页数相关。我正在将空白 pdf 页面与其他 pdf 页面合并并转换为 pdfa!
参考:https://www.pdftron.com/documentation/python/guides/features/pdfa/convert/
提前致谢!!!
异常表示您正在处理的文档不包含任何页面。由于您正在合并空白 PDF,因此您可能错过了 PDFDoc.PagePushBack(page)
call.
如果这没有帮助,请分享您创建和合并 PDF 的代码。
我正在尝试使用 PDFNetPython3 将 pdf 转换为 pdf/a。但是我收到以下错误。 主要错误信息: 字典不包含所需的关键字:Pages
根据 PDFNetPython3 文档。
from PDFNetPython3 import PDFNet, PDFACompliance
# ... some necessary code like temp_file_path_in (this is not null and has values of file_object)
pdf_a = PDFACompliance(True, tmp_file_path_in, None, PDFACompliance.e_Level2B, 0, 0, 10)
也试过使用这个(得到同样的错误):
pdf_a = PDFACompliance(True, filename, None, PDFACompliance.e_Level2B, 0, 10)
我想知道此页面是否与 pdf 页码或总页数相关。我正在将空白 pdf 页面与其他 pdf 页面合并并转换为 pdfa!
参考:https://www.pdftron.com/documentation/python/guides/features/pdfa/convert/
提前致谢!!!
异常表示您正在处理的文档不包含任何页面。由于您正在合并空白 PDF,因此您可能错过了 PDFDoc.PagePushBack(page)
call.
如果这没有帮助,请分享您创建和合并 PDF 的代码。