雷火电竞-中国电竞赛事及体育赛事平台

歡迎來到入門教程網(wǎng)!

C#教程

當前位置:主頁 > 軟件編程 > C#教程 >

C#將PPT文件轉(zhuǎn)換成PDF文件

來源:本站原創(chuàng)|時間:2020-01-10|欄目:C#教程|點擊:

這里在提供C#代碼,將PPT轉(zhuǎn)成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>
    /// 轉(zhuǎn)換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;
        }
        //主動激活垃圾回收器,主要是避免超大批量轉(zhuǎn)文檔時,內(nèi)存占用過多,而垃圾回收器并不是時刻都在運行!
        GC.Collect();
        GC.WaitForPendingFinalizers();
      }
      return true;
    }
  }
}

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對我們的支持。如果你想了解更多相關內(nèi)容請查看下面相關鏈接

上一篇:C#實現(xiàn)影院售票系統(tǒng)

欄    目:C#教程

下一篇:C# List引用類型克隆的3種方法

本文標題:C#將PPT文件轉(zhuǎn)換成PDF文件

本文地址:http://www.jygsgssxh.com/a1/C_jiaocheng/4936.html

網(wǎng)頁制作CMS教程網(wǎng)絡編程軟件編程腳本語言數(shù)據(jù)庫服務器

如果侵犯了您的權利,請與我們聯(lián)系,我們將在24小時內(nèi)進行處理、任何非本站因素導致的法律后果,本站均不負任何責任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權所有