91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

批量將ppt轉換為pdf的Python代碼 只要27行!

發布時間:2020-08-26 00:11:06 來源:腳本之家 閱讀:163 作者:zhusongziye 欄目:開發技術

這是一個Python腳本,能夠批量地將微軟Powerpoint文件(.ppt或者.pptx)轉換為pdf格式。

使用說明

1、將這個腳本跟PPT文件放置在同一個文件夾下。
2、運行這個腳本。

全部代碼

import comtypes.client
import os

def init_powerpoint():
 powerpoint = comtypes.client.CreateObject("Powerpoint.Application")
 powerpoint.Visible = 1
 return powerpoint

def ppt_to_pdf(powerpoint, inputFileName, outputFileName, formatType = 32):
 if outputFileName[-3:] != 'pdf':
 outputFileName = outputFileName + ".pdf"
 deck = powerpoint.Presentations.Open(inputFileName)
 deck.SaveAs(outputFileName, formatType) # formatType = 32 for ppt to pdf
 deck.Close()

def convert_files_in_folder(powerpoint, folder):
 files = os.listdir(folder)
 pptfiles = [f for f in files if f.endswith((".ppt", ".pptx"))]
 for pptfile in pptfiles:
 fullpath = os.path.join(cwd, pptfile)
 ppt_to_pdf(powerpoint, fullpath, fullpath)

if __name__ == "__main__":
 powerpoint = init_powerpoint()
 cwd = os.getcwd()
 convert_files_in_folder(powerpoint, cwd)
 powerpoint.Quit()

源碼地址

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东明县| 井陉县| 阿合奇县| 莲花县| 淮滨县| 麟游县| 昌吉市| 博湖县| 涟水县| 永清县| 清镇市| 乐东| 闽清县| 铜梁县| 邯郸市| 增城市| 靖边县| 陵水| 海原县| 曲周县| 黑山县| 泰兴市| 淳安县| 尚义县| 视频| 昌平区| 白水县| 都匀市| 浦县| 镇江市| 喀喇沁旗| 威宁| 灵川县| 辽中县| 葵青区| 民县| 宜川县| 安阳市| 博白县| 临猗县| 绥芬河市|