12 2023 档案
摘要:主要分为3个步骤,解压docx文件,压缩图片,压缩文件,需要用到zipfile和pillow 1. 解压docx文件 import zipfile zip_file = zipfile.ZipFile("./test.docx") zip_file.extractall("./test") zip_
阅读全文
摘要:1. word格式转换 先将word转换为xml格式,路径需要绝对路径 from win32com import client import os def doc2docx(path): word = client.Dispatch("Word.Application") doc = word.Do
阅读全文