這篇文章主要介紹“python 如何提取PPT中所有文字的方法”,在日常操作中,相信很多人在python 如何提取PPT中所有文字的方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”python 如何提取PPT中所有文字的方法”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
創(chuàng)新互聯(lián)主營林州網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都App制作,林州h5小程序開發(fā)搭建,林州網(wǎng)站營銷推廣歡迎林州等地區(qū)企業(yè)咨詢我就廢話不多說了,大家還是直接看代碼吧~
# 導(dǎo)入pptx包 from pptx import Presentation prs = Presentation(path_to_presentation) text_runs = [] for slide in prs.slides: for shape in slide.shapes: if not shape.has_text_frame: continue for paragraph in shape.text_frame.paragraphs: for run in paragraph.runs: text_runs.append(run.text)
補充:使用 python-pptx-interface 將PPT轉(zhuǎn)換成圖片
最簡單的方法就是使用PPTX的File中的SaveAs命令,將PPTX文件另存為JPEG格式。
▲ 使用PPT的SaveAs將PPTX存儲為JPEG
注意,在最后一步的時候需要選擇“所有幻燈片(A)”。
▲ 選擇所有幻燈片
最后,PPTX的每張幻燈片都以獨立文件方式保存到文件中。X
這部分的內(nèi)容可以參照: How to Export PowerPoint Slides as JPG or Other Image Formats 中的介紹。
python-pptx是用于創(chuàng)建和更新PointPoint(PPTX)文件的Python庫。
一種常用的場合就是從數(shù)據(jù)庫內(nèi)容生成一個客戶定制的PointPoint文件,這個過程通過點擊WEB應(yīng)用上的連接完成。許多開發(fā)之 通過他們?nèi)粘9芾硐到y(tǒng)生成工程狀態(tài)匯報PPT。它也可以用于批量生成PPT或者產(chǎn)品特性說明PPT。
python-ppt License:
The MIT License (MIT) Copyright © 2013 Steve Canny, https://github.com/scanny
Python-PPTX對應(yīng)的官方網(wǎng)絡(luò)網(wǎng)址:Python-PPTX https://python-pptx.readthedocs.io/en/latest/user/intro.html#
使用pip進(jìn)行安裝:
pip install python-pptx
對于python要求: Python2.7,3.3,3.4,3.6
依賴庫:
Python 2.6, 2.7, 3.3, 3.4, or 3.6 lxml Pillow XlsxWriter (to use charting features)
下面的例子來自于: Get Start 。
from pptx import Presentation prs = Presentation() title_slide_layout = prs.slide_layouts[0] slide = prs.slides.add_slide(title_slide_layout) title = slide.shapes.title subtitle = slide.placeholders[1] title.text = 'Hello world!' subtitle.text = 'python-pptx was here.' prs.save(r'd:\temp\test.pptx') printf("\a")
from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() blank_slide_layout = prs.slide_layouts[6] slide = prs.slides.add_slide(blank_slide_layout) left = top = width = height = Inches(1) txBox = slide.shapes.add_textbox(left, top, width, height) tf = txBox.text_frame tf.text = "This is text inside a textbox" p = tf.add_paragraph() p.text = "This is a second paragraph that's bold" p.font.bold = True p = tf.add_paragraph() p.text = "This is a third paragraph that's big" p.font.size = Pt(40) prs.save(r'd:\temp\test1.pptx')
pip install python-pptx-interface
注意:轉(zhuǎn)換生成的目錄必須使用新的目錄。否則就會出現(xiàn):
Folder d:\temp\pptimage already exists. Set overwrite_folder=True, if you want to overwrite folder content.
from pptx_tools import utils pptfile = r'D:\Temp\如何搭建自己的電子實驗室_20210102R10.pptx' png_folder = r'd:\temp\pptimage' utils.save_pptx_as_png(png_folder, pptfile, overwrite_folder=True)
生成后的PPT對應(yīng)的PNGImage。
▲ 生成后的PPTX對應(yīng)的PNG圖片
將PPTX轉(zhuǎn)換成圖片,可以便于后期將文件上載到CSDN,或者用于DOP文件的制作。
到此,關(guān)于“python 如何提取PPT中所有文字的方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
分享文章:python如何提取PPT中所有文字的方法-創(chuàng)新互聯(lián)
網(wǎng)站路徑:http://muchs.cn/article0/phhoo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、虛擬主機、網(wǎng)頁設(shè)計公司、網(wǎng)站排名、小程序開發(fā)、自適應(yīng)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)