我尝试将docx文件转换为html文件。 但是无法转换为提取设计,表格,图像等。
我的代码:
import mammoth
doc_file = open('source_file.docx', "rb")
html_file = open(output_file.html,'wb')
result = mammoth.convert_to_html(doc_file)
html_file.write(result.value.encode('utf8'))
doc_file.close()
html_file.close()