from
docx
import
Document
from
pptx
import
Presentation
from
pptx.util
import
Inches
from
PIL
import
Image
import
io
import
os
folder_path
=
r
"C:\Users\Administrator\Desktop\tt"
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
:
doc
=
Document(word_path)
except
Exception as e:
print
(f
"❌ 无法读取文件 {filename}: {e}"
)
continue
prs
=
Presentation()
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
slide
=
prs.slides.add_slide(prs.slide_layouts[
6
])
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
))
prs.save(ppt_path)
print
(f
"✅ 生成PPT:{ppt_path}"
)
print
(
"所有文件处理完成!🎯"
)