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.

18 lines
561 B

1 month ago
import os
1 month ago
from Util.WordImageUtil import extract_images_from_docx
1 month ago
# 使用示例
1 month ago
if __name__ == "__main__":
1 month ago
word_path = "d:\\dsWork\\dsProject\\dsRag\\Test\\带图的WORD文档.docx"
output_dir = "../static/Images" # 图片输出目录
1 month ago
os.makedirs(output_dir, exist_ok=True)
images = extract_images_from_docx(word_path, output_dir)
# 打印结果
for img in images:
print(f"图片保存至: {img['image_path']}")
loc = img['location']
1 month ago
print(f"位置信息: 段落 {loc['paragraph_index']}")