You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from Util.WordImageUtil import extract_images_from_docx
|
|
|
|
|
|
# 使用示例
|
|
if __name__ == "__main__":
|
|
word_path = "d:\\dsWork\\dsProject\\dsRag\\static\\Test\\带图的WORD文档_MATH_3.docx"
|
|
output_dir = "../static/Images" # 图片输出目录
|
|
extract_images_from_docx(word_path, output_dir)
|