我想在模板幻灯片中复制一个自由格式的对象,并制作出多个对象。

我在文档中找不到从现有形状创建形状的方法。我在错误的位置寻找该功能或该功能不存在?

最佳答案

python-pptx API不支持此操作,但是您可以使用一些内部构件来实现此结果

from copy import deepcopy

# ---get the existing freeform shape however you do---
freeform = slide.shapes[n]
# ---get the underlying XML element for that shape---
sp = freeform._sp
for idx in range(3):
    # ---duplicate original freeform---
    new_sp = deepcopy(sp)
    # ---create a unique id for it---
    new_sp.nvSpPr.cNvPr.id = 1000 + idx
    # ---insert it after original---
    sp.addnext(new_sp)


这些都将直接堆叠在原始文件的顶部,因此您可能需要添加一些将它们移动到新位置。另外,如果现有的自由格式参与了超链接,则可能会遇到麻烦,该超链接本身就是链接或包含超链接的文本。

10-08 19:57