我正在整理一个 python 脚本,它将“清理”PowerPoint 文件的字体、字体颜色、字体大小等。我找到了一个代码片段,它可以完成我需要它做的事情,但是它似乎坏了只要它遇到幻灯片中的图像。
import win32com.client, sys
Application = win32com.client.Dispatch("PowerPoint.Application")
Application.Visible = True
Presentation = Application.Presentations.Open(sys.argv[1])
for Slide in Presentation.Slides:
for Shape in Slide.Shapes:
Shape.TextFrame.TextRange.Font.Name = "Arial"
Shape.TextFrame.TextRange.Font.Size = "12"
Shape.TextFrame.TextRange.Font.Color.RGB = "000000"
Presentation.Save()
Application.Quit()
编辑:复制并粘贴错误的代码...删除了无效的 if 语句。
这一切都运行得很好,清理看起来很傻的字体和颜色,直到它出现第一个图像。然后它坏了,我看到了这个:
Traceback (most recent call last):
File "c:/pptpy/convert.py", line 7, in <module>
Shape.TextFrame.TextRange.Font.Name = "Arial"
File "C:\Python33\lib\site-packages\win32com\client\dynamic.py", line 511, in __getattr__
ret = self._oleobj_.Invoke(retEntry.dispid,0,invoke_type,1)
pywintypes.com_error: (-2147352567, 'Exception occurred.', (0, None, 'The specified value is out of range.', None, 0, -2147024809), None)
如果我从文件中删除所有图像(不是形状)并运行脚本,它会很好用,我会留下一个不错的 powerpoint。然而,图像非常重要。
细节:
蟒蛇 3.3
PowerPoint 2007
脚本一旦完成,希望一次转换 200-300 PPT(x) 的批次。
如果您需要更多详细信息,请告诉我!谢谢!