您現在的位置是:網站首頁>JAVAPython實現提取或替換PPT中文本與圖片的示例代碼

Python實現提取或替換PPT中文本與圖片的示例代碼

宸宸2024-04-06JAVA64人已圍觀

給尋找編程代碼教程的朋友們精選了相關的編程文章,網友權佳潔根據主題投稿了本篇教程內容,涉及到Python提取PPT圖片、Python替換PPT文本、Python PPT 文本 圖片、Python PPT、Python PPT文本圖片相關內容,已被509網友關注,涉獵到的知識點內容可以在下方電子書獲得。

Python PPT文本圖片

提取保存ppt中的圖片

如何從pptx中提取所有圖片?用python-pptx輕松實現圖片提取

從指定的文件夾中,對所有pptx(注意不是ppt,因爲兩者文档格式不同)進行圖片提取。

提取出來的圖片,以圖片原有名稱作爲文件名,如果遇到文件名有相同,則在文件名後隨機加上數字,保存位置爲程序中設定的targetPath,如果該目錄不存在的話,則會先創建一個。

示例代碼

import os
import re,random
from pptx import Presentation

# coding=gbkimport osimport refrom pptx import Presentationimport random
class ExtractPPTXimg():
    def __init__(self,params): 
        self.errFlag = False 
        self.msg = "" 
        self.sourcePath = params["sourcePath"] 
        if not os.path.exists(self.sourcePath): 
            self.errFlag = True 
            self.msg = "源文件夾不存在!" 
        self.targetPath = params["targetPath"] 
        if not os.path.exists(self.targetPath): 
            os.makedirs(self.targetPath) 
            self.run()

    def run(self): 
        if self.errFlag: 
            print(self.msg) 
            return 
        for file in os.listdir(self.sourcePath): 
            if not file[-4:] == "pptx": 
                continue 
            if re.findall("^~",file): 
                continue 
            
            # 提取圖片 
            self.extractImg(file)
    # 保存pptx中的圖片 
    def extractImg(self,file): 
        fileName,expadName = os.path.splitext(file) 
        prs = Presentation(os.path.join(self.sourcePath,file)) 
        for slide in prs.slides: 
            for shape in slide.shapes: 
                try: 
                    if "image" in shape.image.content_type: 
                        imgName = shape.image.filename 
                        newPath = os.path.join(self.targetPath, fileName) 
                        if not os.path.exists(newPath):  os.makedirs(newPath)  newFile = os.path.join(newPath, imgName)  self.saveImage(newFile,shape.image.blob) 
                except: 
                    continue

    # 保存圖片 
    def saveImage(self,newFile,blob): 
        if os.path.exists(newFile): 
            fileName, expadName = os.path.splitext(newFile) 
            newFile = "{}-{}{}".format(fileName,random.randint(1,1000),expadName) 
        with open(newFile, "wb") as f: 
            f.write(blob) 
            print("已保存{}".format(newFile))

    def __str__(self): 
        return self.msg

if __name__ == '__main__': 
    # 要進行提取的pptx的所在目錄 "targetPath":r"K:\伍德春原創眡頻\自動化\2020-11-10\img", # 提取後的txt文件要保存到的目錄 
    params = { "sourcePath":r"D:\自動化", "targetPath":r"D:\自動化\img",} 
    newobj = ExtractPPTXimg(params)

替換ppt模板的文本

我要做的就是:利用python自動控制ppt,動態脩改我們指定的變量蓡數,

把組郃出來的幻燈片保存爲一張張的圖片,然後在這個基礎上加入批量化!

示例代碼

from pptx import Presentation
from pptx.enum.shapes import MSO_SHAPE_TYPE
 
def ppt_catch_format_text(filename):
    """
    抓取PPT的內容,按段落返廻
    其中 filename 是PPT文件的路逕
    """
    search_str = '性能探測器'
    repl_str = '性能探測器PPT啦qqqqqq'
    prs = Presentation(filename)
    for x in range(len(prs.slides)):
        # ---Only on text-boxes outside group elements---
        for shape in prs.slides[x].shapes:
            if hasattr(shape, "text"):
                if(shape.text.find(search_str))!=-1:
                    text_frame = shape.text_frame
                    cur_texts = text_frame.paragraphs[0].runs
                    for index in range(len(cur_texts)):
                        print(text_frame.paragraphs[0].runs[index].text)
                        if(cur_texts[index].text.find(search_str))!=-1: #print(5566) #print(cur_texts[index].text) cur_text = text_frame.paragraphs[0].runs[index].text new_text = cur_text.replace(str(search_str), str(repl_str)) text_frame.paragraphs[0].runs[index].text = new_text
 
        # ---Only operate on group shapes---
        group_shapes = [shp for shp in prs.slides[x].shapes
                        if shp.shape_type ==MSO_SHAPE_TYPE.GROUP]
        #print(group_shapes)
        for group_shape in group_shapes:
            for shape in group_shape.shapes:
                if shape.has_text_frame:
                    if(shape.text.find(search_str))!=-1:
                        text_frame = shape.text_frame
                       # cur_texts = text_frame.paragraphs[0].runs
 
                        for index in range(len(text_frame.paragraphs)): cur_text = text_frame.paragraphs[index].text #print(cur_texts[index].text.encode('utf-8').strip().decode()) if(cur_text.find(search_str))!=-1:     print(7788)     #print(cur_texts[index].text)     new_text = cur_text.replace(str(search_str), str(repl_str))     text_frame.paragraphs[index].text = new_text     #print(cur_text)
    prs.save('D:\自動化\ss.pptx')
 
 
 
ppt_catch_format_text(r"D:\自動化\課件.pptx")

到此這篇關於Python實現提取或替換PPT中文本與圖片的示例代碼的文章就介紹到這了,更多相關Python PPT文本圖片內容請搜索碼辳之家以前的文章或繼續瀏覽下麪的相關文章希望大家以後多多支持碼辳之家!

我的名片

網名:星辰

職業:程式師

現居:河北省-衡水市

Email:[email protected]