当前位置:   article > 正文

python读取ppt文本内容_python pptx获取母版颜色

python pptx获取母版颜色
  1. import win32com
  2. from win32com.client import Dispatch, constants
  3. ppt = win32com.client.Dispatch('PowerPoint.Application')
  4. ppt.Visible = 1
  5. pptSel = ppt.Presentations.Open("C:\\web\\phpStudy\\WWW\\ppt\\Russia\\1.pptx")
  6. # win32com.client.gencache.EnsureDispatch('PowerPoint.Application')
  7. #get the ppt's pages
  8. slide_count = pptSel.Slides.Count
  9. for i in range(1,slide_count + 1):
  10. shape_count = pptSel.Slides(i).Shapes.Count
  11. print shape_count
  12. for j in range(1,shape_count + 1):
  13. if pptSel.Slides(i).Shapes(j).HasTextFrame:
  14. s = pptSel.Slides(i).Shapes(j).TextFrame.TextRange.Text
  15. print (s.encode('utf-8')+ "\n")
  16. ppt.Quit()



使用前需要配置win32库 安装非常简单


本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/人工智能uu/article/detail/1001692
推荐阅读
相关标签
  

闽ICP备14008679号