RPA/Python

[python-pptx] 슬라이드에 이미지 삽입

꼰대 2021. 5. 8. 15:18

from pptx import Presentation

from pptx.util import Inches

 

 

prs = Presentation()

 

# 빈 레이아웃

slide_layout = prs.slide_layouts[6]

slide = prs.slides.add_slide(slide_layout)

 

left = Inches(1)        # x좌표

top = Inches(1)        # y좌표

width = Inches(5)     # 이미지 가로 길이

height = Inches(0.5)  # 이미지 세로 길이

 

# 이미지 삽입

pic = slide.shapes.add_picture('img.png', left, top, width, height)

 

 

prs.save('demo.pptx')

반응형