asp.Net pptドキュメントをpdfに変換する方法を実現

2138 ワード

本文の例はaspを述べた.Netはpptドキュメントをpdfに変換する方法を実現する.皆さんの参考にしてください.具体的な実現方法は以下の通りである.
一、参照の追加

   using Microsoft.Office.Core; 
  
using Microsoft.Office.Interop.PowerPoint;

二、変換方法

   ///        
  
/// PowerPoint PDF       
///
       
///     
///
/// true, false
public static bool PPTConvertToPDF(string sourcePath, string targetPath)
{
        bool result;
        PpSaveAsFileType ppSaveAsFileType = PpSaveAsFileType.ppSaveAsPDF;// pdf
        object missing = Type.Missing;
        Microsoft.Office.Interop.PowerPoint.ApplicationClass application = null;
        Presentation persentation = null;
        try
        {
            application = new Microsoft.Office.Interop.PowerPoint.ApplicationClass();
            persentation = application.Presentations.Open(sourcePath, MsoTriState.msoTrue, MsoTriState.msoFalse, MsoTriState.msoFalse);
            if (persentation!=null)
            {
                persentation.SaveAs(targetPath, ppSaveAsFileType, MsoTriState.msoTrue);
            }
            result = true;
        }
        catch
        {
            result = false;
        }
        finally
        {
            if (persentation != null)
            {
                persentation.Close();
                persentation = null;
            }
            if (application != null)
            {
                application.Quit();
                application = null;
            }
        }
        return result;
}

三、呼び出し

   OfficeToPdf.PPTToPDF("d:\\12345.pptx", "d:\\12345.pdf"); 
 

皆さんのaspについてお話ししたいと思います.Netプログラミングが役立ちます.