吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 438|回复: 7
上一主题 下一主题
收起左侧

[Python 原创] 【Python】从 Word 文档中提取图片并生成 PPT

[复制链接]
跳转到指定楼层
楼主
zhzhx 发表于 2025-4-1 16:49 回帖奖励
[Python] 纯文本查看 复制代码
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from docx import Document
from pptx import Presentation
from pptx.util import Inches
from PIL import Image
import io
import os
 
# 指定包含 Word 文件的文件夹路径
folder_path = r"C:\Users\Administrator\Desktop\tt"  # 修改为你的文件夹路径
 
# 遍历文件夹中的所有 Word 文件
for filename in os.listdir(folder_path):
    if filename.endswith(".docx"):
        word_path = os.path.join(folder_path, filename)
        ppt_name = os.path.splitext(filename)[0] + ".pptx"
        ppt_path = os.path.join(folder_path, ppt_name)
 
        print(f"正在处理:{filename}")
 
        try:
            # 尝试读取Word文件
            doc = Document(word_path)
 
        except Exception as e:
            print(f"❌ 无法读取文件 {filename}: {e}")
            continue  # 跳过当前文件,处理下一个
 
        # 创建PPT演示文稿
        prs = Presentation()
 
        # 提取图片并插入PPT
        for para in doc.paragraphs:
            for run in para.runs:
                blip = run._r.find('.//a:blip', namespaces={'a': 'http://schemas.openxmlformats.org/drawingml/2006/main'})
                if blip is not None:
                    embed_id = blip.get('{[url]http://schemas.openxmlformats.org/officeDocument/2006/relationships[/url]}embed')
                    if embed_id and embed_id in run.part.related_parts:
                        image_part = run.part.related_parts[embed_id]
                        img_stream = io.BytesIO(image_part.blob)
 
                        # 打开图片
                        img = Image.open(img_stream)
                        img_width, img_height = img.size
 
                        # 创建PPT幻灯片
                        slide = prs.slides.add_slide(prs.slide_layouts[6])
 
                        # 设置PPT大小与图片尺寸一致
                        prs.slide_width = Inches(img_width / 100)
                        prs.slide_height = Inches(img_height / 100)
 
                        # 将图片添加到幻灯片
                        slide.shapes.add_picture(img_stream, 0, 0, width=Inches(img_width / 100), height=Inches(img_height / 100))
 
        # 保存PPT
        prs.save(ppt_path)
        print(f"✅ 生成PPT:{ppt_path}")
 
print("所有文件处理完成!🎯")

免费评分

参与人数 2吾爱币 +2 热心值 +2 收起 理由
laozhang4201 + 1 + 1 谢谢@Thanks!
taoguo666 + 1 + 1 谢谢@Thanks!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

沙发
sktao 发表于 2025-4-1 17:20
看着很简单啊   是不是能生产模板和格式那样的
3#
yxf515321 发表于 2025-4-1 19:49
sktao 发表于 2025-4-1 17:20
看着很简单啊   是不是能生产模板和格式那样的

应该是用ai写的,有需要的话,你可以根据你的需求,利用ai优化这段代码
4#
sktao 发表于 2025-4-1 20:47
yxf515321 发表于 2025-4-1 19:49
应该是用ai写的,有需要的话,你可以根据你的需求,利用ai优化这段代码

谢谢 辛苦了
5#
qq123667 发表于 2025-4-1 22:07
emmmm 这个有点用 但不大
6#
crystalZ 发表于 2025-4-1 22:40
用的openxml啊
7#
ma5635 发表于 2025-4-1 23:18
都有word了 直接自己整图片就是,难的是在需要合适的PPT模板
8#
sorryking42 发表于 2025-4-1 23:51
用cpu还是gpu
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2025-4-3 21:03

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表