C#將PPT文件轉換成PDF文件
更新時間:2019年01月23日 10:08:51 作者:chenqiangdage
今天小編就為大家分享一篇關于C#將PPT文件轉換成PDF文件,小編覺得內(nèi)容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧
這里在提供C#代碼,將PPT轉成PDF.直接上代碼;
要引入Microsoft.Office.Interop.PowerPoint; 版本12.0.0.0;
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Runtime.InteropServices; using Microsoft.Office.Interop.PowerPoint; //Office 命名空間 namespace OfficeToPdf { //excel 類 class PowerPointConverter { //構造函數(shù) public PowerPointConverter() { } /// <summary> /// 轉換PowerPoint 成PDF文檔 /// </summary> /// <param name="_lstrInputFile">原文件路徑</param> /// <param name="_lstrOutFile">pdf文件輸出路徑</param> /// <returns>true 成功</returns> public bool ConverterToPdf(string _lstrInputFile, string _lstrOutFile) { Microsoft.Office.Interop.PowerPoint.Application lobjPowerPointApp = null; Microsoft.Office.Interop.PowerPoint.Presentation lobjppt = null; object lobjMissing = System.Reflection.Missing.Value; object lobjSaveChanges = null; try { lobjPowerPointApp = new Microsoft.Office.Interop.PowerPoint.Application(); lobjppt = lobjPowerPointApp.Presentations.Open(_lstrInputFile, MSCore.MsoTriState.msoTrue, MSCore.MsoTriState.msoFalse, MSCore.MsoTriState.msoFalse); lobjppt.SaveAs(_lstrOutFile, PpSaveAsFileType.ppSaveAsPDF, MSCore.MsoTriState.msoCTrue); } catch (Exception ex) { //其他日志操作; return false; } finally { if (lobjppt != null) { lobjppt.Close(); Marshal.ReleaseComObject(lobjppt); lobjppt = null; } if (lobjPowerPointApp != null) { lobjPowerPointApp.Quit(); Marshal.ReleaseComObject(lobjPowerPointApp); lobjPowerPointApp = null; } //主動激活垃圾回收器,主要是避免超大批量轉文檔時,內(nèi)存占用過多,而垃圾回收器并不是時刻都在運行! GC.Collect(); GC.WaitForPendingFinalizers(); } return true; } } }
總結
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對腳本之家的支持。如果你想了解更多相關內(nèi)容請查看下面相關鏈接
相關文章
c# WinForm制作圖片編輯工具(圖像拖動、縮放、旋轉、摳圖)
這篇文章主要介紹了c# WinForm制作圖片編輯工具(可實現(xiàn)圖像拖動、縮放、旋轉、摳圖),幫助大家更好的理解和學習使用c#,感興趣的朋友可以了解下2021-03-03WPF利用TextBlock實現(xiàn)查找結果高亮顯示效果
在應用開發(fā)過程中,經(jīng)常遇到這樣的需求:通過關鍵字查找數(shù)據(jù),把帶有關鍵字的數(shù)據(jù)顯示出來,同時在結果中高亮顯示關鍵字,所以本文就來和大家介紹一下如何利用TextBlock實現(xiàn)查找結果高亮顯示效果吧2023-08-08