国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#將PPT文件轉換成PDF文件

2020-01-24 00:10:55
字體:
來源:轉載
供稿:網友

這里在提供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;    }  }}

總結

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 海宁市| 永昌县| 衡山县| 辉县市| 胶州市| 吴堡县| 定兴县| 北海市| 札达县| 区。| 辽中县| 正镶白旗| 双柏县| 长顺县| 水富县| 郸城县| 乾安县| 镶黄旗| 弥勒县| 岫岩| 汤阴县| 额敏县| 万安县| 师宗县| 余庆县| 类乌齐县| 博乐市| 曲水县| 邵阳市| 丽水市| 辉南县| 东海县| 武威市| 玉林市| 兴隆县| 灌南县| 辽阳市| 明星| 吉隆县| 商丘市| 武穴市|