There are Text and Picture in one slide of PPT. I would like to set Picture to bottom layer/set Text to top layer and see Text content. How to do that?
text_frame = shape.text_frame
text_frame.vertical_anchor = MSO_ANCHOR.TOP
text_frame = shape.text_frame
text_frame.vertical_anchor = MSO_ANCHOR.TOP
text_frame.paragraphs[0].runs[0].text = "text"
left = Inches(5)
height = Inches(5.5)
pic = slide.shapes.add_picture(img_path, left, top, height=height)
Let Picture in bottom layer and Text in top layer in PPT.