Intvarinit

Results 1 comments of Intvarinit

更新之后,在python3.9环境下出现错误 ``` python import base64 from easyofd.ofd import OFD def pdf2ofd(pdf_pth,out_pth): with open(pdf_pth,"rb") as f: pdfb64 = f.read() ofd = OFD() ofd_bytes = ofd.pdf2ofd(pdfb64,optional_text=False) ofd.del_data() with open(out_pth,"wb") as f: f.write(ofd_bytes)...