您当前的位置:首页 > 计算机 > 编程开发 > Python

Python批量导入图片生成PowerPoint 2007+文件

时间:12-27来源:作者:点击数:

说明:本文是“Python批量爬取微信公众号文章中的图片”的后续文章,用来把从公众号批量抓取的图片还原为PowerPoint 2007文件。

使用方法:安装扩展库python-pptx,然后把上文中抓取的图片和本程序放在同一个文件夹。

import os

import pptx

from pptx.util import Inches

pptFile = pptx.Presentation()

picFiles = [fn for fn in os.listdir() if fn.endswith('.png')]

# 按图片编号顺序导入

for fn in sorted(picFiles, key=lambda item:int(item[:item.rindex('.')])):

    slide = pptFile.slides.add_slide(pptFile.slide_layouts[1])

    # 为PPTX文件当前幻灯片中第一个文本框设置文字,本文代码中可忽略

    slide.shapes.placeholders[0].text = fn[:fn.rindex('.')]

    # 导入并为当前幻灯片添加图片,起始位置和尺寸可修改

    slide.shapes.add_picture(fn, Inches(0), Inches(0), Inches(10), Inches(7.5))

   

pptFile.save('第三章.pptx')

附:代码截图

方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门