其他分享
首页 > 其他分享> > 想要转换 OpenDocument 演示文稿(.odp)到 PDF?试试这个国产控件

想要转换 OpenDocument 演示文稿(.odp)到 PDF?试试这个国产控件

作者:互联网

Spire.Presentation for .NET 是专业的 PowerPoint组件,开发者可以在 .NET 平台上对 PPT文档进行生成、修改、转换和打印等操作,而无需安装 Microsoft PowerPoint。

该文将介绍如何使用Spire.Presentation for .NET将OpenDocument 演示文稿(.odp)另存为PDF格式。可下载最新版测试。


C#

using Spire.Presentation;

namespace odptoPDF
{
    class Program
    {
        static void Main(string[] args)
        {
            //加载示例文档
            Presentation presentation = new Presentation();
            presentation.LoadFromFile("Sample.odp",FileFormat.ODP);

            presentation.SaveToFile("OdptoPDF.pdf",FileFormat.PDF);

        }
    }
}

VB.NET

Imports Spire.Presentation

Namespace odptoPDF
    
    Class Program
        
        Private Shared Sub Main(ByVal args() As String)
            '加载示例文档
            Dim presentation As Presentation = New Presentation
            presentation.LoadFromFile("Sample.odp", FileFormat.ODP)
            presentation.SaveToFile("OdptoPDF.pdf", FileFormat.PDF)
        End Sub
    End Class
End Namespace

效果图:

国产PPT格式控件Spire.Presentation功能演示:替换 PPT 中的视频、音频文件

 

标签:控件,odp,Presentation,Spire,PDF,NET,presentation,FileFormat
来源: https://blog.csdn.net/mnrssj/article/details/115168084