新聞中心
python可以寫PPT。方法為:1、輸入“pip3 install python-pptx”命令安裝python-pptx;2、準(zhǔn)備ppt模板(網(wǎng)絡(luò)下載或自定義幻燈片);3、加載ppt模板并使用指定幻燈片樣式;4、添加數(shù)據(jù)即可生成ppt。
成都創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括滄源網(wǎng)站建設(shè)、滄源網(wǎng)站制作、滄源網(wǎng)頁制作以及滄源網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,滄源網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到滄源省份的部分城市,未來相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
簡(jiǎn)介
本文主要介紹如何通過python生成ppt文件,以及借助ppt模板來生成ppt
環(huán)境
python 3
python-pptx
安裝
pip3 install python-pptx
將文字輸出到ppt
效果圖
代碼
from pptx import Presentation
# 創(chuàng)建幻燈片 ------
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]
# 設(shè)置標(biāo)題和副標(biāo)題
title.text = "Hello, World!"
subtitle.text = "pip install python-pptx"
prs.save("test.pptx")圖表輸出到ppt
效果圖
代碼
from pptx import Presentation
from pptx.chart.data import ChartData
from pptx.enum.chart import XL_CHART_TYPE
from pptx.util import Inches
# 創(chuàng)建幻燈片 ------
prs = Presentation()
slide = prs.slides.add_slide(prs.slide_layouts[5])
# 定義圖表數(shù)據(jù) ---------------------
chart_data = ChartData()
chart_data.categories = ['East', 'West', 'Midwest']
chart_data.add_series('Series 1', (19.2, 21.4, 16.7))
# 將圖表添加到幻燈片 --------------------
x, y, cx, cy = Inches(2), Inches(2), Inches(6), Inches(4.5)
slide.shapes.add_chart(
XL_CHART_TYPE.COLUMN_CLUSTERED, x, y, cx, cy, chart_data
)
prs.save('chart-01.pptx')使用ppt模板來生成ppt
準(zhǔn)備ppt模板(網(wǎng)絡(luò)下載或自定義幻燈片母版)
加載ppt模板,并使用指定幻燈片樣式
添加數(shù)據(jù)并生成新ppt
效果圖
代碼
from pptx import Presentation
from pptx.util import Inches
from pptx import Presentation
from pptx.chart.data import ChartData
from pptx.enum.chart import XL_CHART_TYPE
from pptx.util import Cm #Inches
from pptx.enum.chart import XL_LEGEND_POSITION
if __name__ == '__main__':
# 創(chuàng)建幻燈片 ------
prs = Presentation('template.pptx')
title_only_slide_layout = prs.slide_layouts[5]
slide = prs.slides.add_slide(title_only_slide_layout)
shapes = slide.shapes
shapes.title.text = '報(bào)告'
# 定義表格數(shù)據(jù) ------
name_objects = ["object1", "object2", "object3"]
name_AIs = ["AI1", "AI2", "AI3"]
val_AI1 = (19.2, 21.4, 16.7)
val_AI2 = (22.3, 28.6, 15.2)
val_AI3 = (20.4, 26.3, 14.2)
val_AIs = [val_AI1, val_AI2, val_AI3]
# 表格樣式 --------------------
rows = 4
cols = 4
top = Cm(12.5)
left = Cm(3.5) #Inches(2.0)
width = Cm(24) # Inches(6.0)
height = Cm(6) # Inches(0.8)
# 添加表格到幻燈片 --------------------
table = shapes.add_table(rows, cols, left, top, width, height).table
# 設(shè)置單元格寬度
table.columns[0].width = Cm(6)# Inches(2.0)
table.columns[1].width = Cm(6)
table.columns[2].width = Cm(6)
table.columns[3].width = Cm(6)
# 設(shè)置標(biāo)題行
table.cell(0, 1).text = name_objects[0]
table.cell(0, 2).text = name_objects[1]
table.cell(0, 3).text = name_objects[2]
# 填充數(shù)據(jù)
table.cell(1, 0).text = name_AIs[0]
table.cell(1, 1).text = str(val_AI1[0])
table.cell(1, 2).text = str(val_AI1[1])
table.cell(1, 3).text = str(val_AI1[2])
table.cell(2, 0).text = name_AIs[1]
table.cell(2, 1).text = str(val_AI2[0])
table.cell(2, 2).text = str(val_AI2[1])
table.cell(2, 3).text = str(val_AI2[2])
table.cell(3, 0).text = name_AIs[2]
table.cell(3, 1).text = str(val_AI3[0])
table.cell(3, 2).text = str(val_AI3[1])
table.cell(3, 3).text = str(val_AI3[2])
# 定義圖表數(shù)據(jù) ---------------------
chart_data = ChartData()
chart_data.categories = name_objects
chart_data.add_series(name_AIs[0], val_AI1)
chart_data.add_series(name_AIs[1], val_AI2)
chart_data.add_series(name_AIs[2], val_AI3)
# 添加圖表到幻燈片 --------------------
x, y, cx, cy = Cm(3.5), Cm(4.2), Cm(24), Cm(8)
graphic_frame = slide.shapes.add_chart(
XL_CHART_TYPE.COLUMN_CLUSTERED, x, y, cx, cy, chart_data
)
chart = graphic_frame.chart
chart.has_legend = True
chart.legend.position = XL_LEGEND_POSITION.TOP
chart.legend.include_in_layout = False
value_axis = chart.value_axis
value_axis.maximum_scale = 100.0
value_axis.has_title = True
value_axis.axis_title.has_text_frame = True
value_axis.axis_title.text_frame.text = "False positive"
value_axis.axis_title.text_frame.auto_size
prs.save('test_template.pptx')
推薦課程: Python教程之Tkinter視頻教程
分享名稱:創(chuàng)新互聯(lián)Python教程:python可以寫PPT嗎
瀏覽地址:http://www.dlmjj.cn/article/dpphdic.html


咨詢
建站咨詢

