我使用 python-pptx v0.6.2 来生成 powerpoint。我将现有的幻灯片读入 BytesIO,然后进行一些修改并保存。我可以成功下载文件,并且我确信内容可以写入文件。但是当我打开powerpoint时,它会弹出一条错误消息“Powerpoint发现foo.pptx中的内容有问题。Powerpoint可以尝试修复presatation。”,然后我必须点击“修复”按钮,powerpoint会显示为“修复”模式。我的 Python 版本是 3.5.2,Django 版本是 1.10。下面是我的代码:
with open('foo.pptx', 'rb') as f:
source_stream = BytesIO(f.read())
prs = Presentation(source_stream)
first_slide = prs.slides[0]
title = first_slide.shapes.title
subtitle = first_slide.placeholders[1]
title.text = 'Title'
subtitle.text = "Subtitle"
response = HttpResponse(content_type='application/vnd.ms-powerpoint')
response['Content-Disposition'] = 'attachment; filename="sample.pptx"'
prs.save(source_stream)
ppt = source_stream.getvalue()
source_stream.close()
response.write(ppt)
return response
任何帮助表示赞赏,在此先感谢!