输出端出现以下问题:

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

 

解决方案:

import sys

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

 

相关文章: