輸出端出現以下問題:
PdfReadWarning: Xref table not zero-indexed. ID numbers for objects will be
複制
解決方案:
import sys
if not sys.warnoptions:
import warnings
warnings.simplefilter("ignore")
複制
輸出端出現以下問題:
PdfReadWarning: Xref table not zero-indexed. ID numbers for objects will be
複制
解決方案:
import sys
if not sys.warnoptions:
import warnings
warnings.simplefilter("ignore")
複制