关于合并pdf文件出现的问题

2020-09-17 10:05:39 浏览数 (1)

输出端出现以下问题:

代码语言:javascript复制
PdfReadWarning: Xref table not zero-indexed. ID numbers for objects will be

解决方案:

代码语言:javascript复制
import sys

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

0 人点赞