python pptx复制ppt中的某一页并且放在这一页之后
如题,我有一个模板,我想根据需求复制模板中间的某一页多次,比如复制第五页,然后复制3次,那么第六页,第七页,第八页都是和第五页一模一样的ppt,次数是根据我的需求指定的,使用python pptx模块复制,下面的代码可以让我复制并且加到ppt的最后,可是其实我想直接加在第五页之后,或者操作完加到第五页之后,请教大神们有没有办法解决?
def duplicate_slide(pres,index): template = pres.slides[index]
blank_slide_layout = pres.slide_layouts[index]
copied_slide = pres.slides.add_slide(blank_slide_layout)
for shp in template.shapes:
el = shp.element
newel = copy.deepcopy(el)
copied_slide.shapes._spTree.insert_element_before(newel, 'p:extLst')
for _, value in six.iteritems(template.part.rels):
# Make sure we don't copy a notesSlide relation as that won't exist
if "notesSlide" not in value.reltype:
copied_slide.part.rels.add_relationship(value.reltype,
value._target,
value.rId)
return copied_slide
prs = Presentation("Missed Assessment Rate Template.pptx")
for i in range(0,3):
copied_slide = duplicate_slide(prs, 4)
回答:
又搞定了,明天上代码
以上是 python pptx复制ppt中的某一页并且放在这一页之后 的全部内容, 来源链接: utcz.com/a/158781.html