天天看點

關于合并pdf檔案出現的問題

輸出端出現以下問題:

PdfReadWarning: Xref table not zero-indexed. ID numbers for objects will be           

複制

解決方案:

import sys

if not sys.warnoptions:
    import warnings
    warnings.simplefilter("ignore")           

複制