C#將PPT文件轉換成PDF文件
更新時間:2019年01月23日 10:08:51 作者:chenqiangdage
今天小編就為大家分享一篇關于C#將PPT文件轉換成PDF文件,小編覺得內容挺不錯的,現在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧
這里在提供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
{
//構造函數
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;
}
//主動激活垃圾回收器,主要是避免超大批量轉文檔時,內存占用過多,而垃圾回收器并不是時刻都在運行!
GC.Collect();
GC.WaitForPendingFinalizers();
}
return true;
}
}
}
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對腳本之家的支持。如果你想了解更多相關內容請查看下面相關鏈接
相關文章
C#創(chuàng)建WebService接口并連接的全過程
工作時遇到需要請求客戶的接口返回數據,要求使用WebService,借此機會記錄一下,下面這篇文章主要給大家介紹了關于C#創(chuàng)建WebService接口并連接的相關資料,文中通過示例代碼介紹的非常詳細,需要的朋友可以參考下2022-12-12
在C# WPF下自定義滾動條ScrollViewer樣式的操作
這篇文章主要介紹了在C# WPF下自定義滾動條ScrollViewer樣式的操作,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2021-01-01

