首頁 > 軟體

利用Python自動生成PPT的範例詳解

2022-07-14 22:01:41

在日常工作中,PPT製作是常見的工作,如果製作創意類PPT,則無法通過自動化的形式生成,因為創意本身具有隨機性,而自動化解決的是重複性工作,兩者有所衝突。

python-pptx是python處理PPT的一個庫,注重的是讀和寫,無法匯出,沒有渲染功能。

廢話不多說,第一步,安裝python-pptx庫:

pip3 install -i https://pypi.doubanio.com/simple/ python-pptx

ppt裡面處理的主要物件一般為文字方塊,表格,圖片。

每一頁的ppt為一個slide

from pptx import Presentation, util
from pptx.util import Pt,Cm
from pptx.shapes.picture import Picture
#範例化一個ppt物件
ppt = Presentation("./test.pptx")
slide = ppt.slides[0] #第幾頁

然後遍歷檢視這一頁ppt中都包含哪些物件:

def rander_template(slide):
    for shape in slide.shapes:
        if shape.has_text_frame == True:
            print("==========================文字方塊=============================")
            print("段落長度:",len(shape.text_frame.paragraphs))
            for paragraph in shape.text_frame.paragraphs:
                # 拼接文字
                print("段落包含欄位:",len(paragraph.runs))
                print(''.join(run.text for run in paragraph.runs))
                for i in range(len(paragraph.runs)):
                    print("run"+str(i)+":"+paragraph.runs[i].text)
            print(shape.text_frame.paragraphs[0].runs[0].text)
            shape.text_frame.paragraphs[0].runs[0].text = "規則是自由的第一要義"
        elif shape.has_table == True:
            print("==========================表格==============================")
            one_table_data = []
            for row in shape.table.rows:  # 讀每行
                row_data = []
                for cell in row.cells:  # 讀一行中的所有單元格
                    cell.text = cell.text if cell.text != "" else "未填寫"
                    c = cell.text
                    row_data.append(c)
                one_table_data.append(row_data)  # 把每一行存入表
            # 用二維列表輸出表格行和列的資料
            print(one_table_data)
            print("第一個單元格內容:",shape.table.rows[0].cells[0].text)

        elif isinstance(shape,Picture):
            print("==========================圖片==============================")
            index = 0
            with open(f'{index}.jpg','wb') as f:
                f.write(shape.image.blob)
                index += 1

文字方塊物件【text_frame】:

shape.has_text_frame檢視是否有文字方塊物件,有的話檢視具體有幾個段落【len(shape.text_frame.paragraphs)】,每個段落又有多少個run物件【len(paragraph.runs)】

注意:修改run物件的時候,修改run[0],後面的值都會被覆蓋。

表格物件【table】:

table物件還是按照行列值來定位劃分的,eg:table.rows[2]cells[3].text代表第三行第四列的值

圖片物件【Picture】:

插入圖片需要固定圖片的位置,比如:

def insert_pic(slide):
    #需要用到pptx庫的util方法
    img_path = './blue.png'  # 圖片路徑
    # 設定圖片的位置和大小
    left = util.Cm(8.04)
    top = util.Cm(9.93)
    width = util.Cm(15.07)
    height = util.Cm(4.06)
    # 在頁面中插入圖片
    slide.shapes.add_picture(img_path, left, top, width, height)

全部程式碼:

from pptx import Presentation, util
from pptx.util import Pt,Cm
from pptx.shapes.picture import Picture
ppt = Presentation("./test.pptx")

def rander_template(slide):
    for shape in slide.shapes:
        if shape.has_text_frame == True:
            print("==========================文字方塊=============================")
            print("段落長度:",len(shape.text_frame.paragraphs))
            for paragraph in shape.text_frame.paragraphs:
                # 拼接文字
                print("段落包含欄位:",len(paragraph.runs))
                print(''.join(run.text for run in paragraph.runs))
                for i in range(len(paragraph.runs)):
                    print("run"+str(i)+":"+paragraph.runs[i].text)
            print(shape.text_frame.paragraphs[0].runs[0].text)
            shape.text_frame.paragraphs[0].runs[0].text = "規則是自由的第一要義"
        elif shape.has_table == True:
            print("==========================表格==============================")
            one_table_data = []
            for row in shape.table.rows:  # 讀每行
                row_data = []
                for cell in row.cells:  # 讀一行中的所有單元格
                    cell.text = cell.text if cell.text != "" else "未填寫"
                    c = cell.text
                    row_data.append(c)
                one_table_data.append(row_data)  # 把每一行存入表
            # 用二維列表輸出表格行和列的資料
            print(one_table_data)
            print("第一個單元格內容:",shape.table.rows[0].cells[0].text)

        elif isinstance(shape,Picture):
            print("==========================圖片==============================")
            index = 0
            with open(f'{index}.jpg','wb') as f:
                f.write(shape.image.blob)
                index += 1
def insert_pic(slide):
    img_path = './blue.png'  # 圖片路徑
    # 設定圖片的位置和大小
    left = util.Cm(8.04)
    top = util.Cm(9.93)
    width = util.Cm(15.07)
    height = util.Cm(4.06)
    # 在頁面中插入圖片
    slide.shapes.add_picture(img_path, left, top, width, height)


if __name__ == "__main__":
    slide = ppt.slides[0] #第幾頁
    rander_template(slide)
    insert_pic(slide)
    ppt.save('new.pptx')  # 儲存為檔案

初始ppt:

生成ppt:

到此這篇關於利用Python自動生成PPT的範例詳解的文章就介紹到這了,更多相關Python自動生成PPT內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com