彩票走势图

国产PPT格式控件Spire.Presentation功能演示:使用C#在PowerPoint中添加或删除数字签名

翻译|使用教程|编辑:李显亮|2021-05-13 10:24:30.173|阅读 315 次

概述:本文演示了如何使用Spire.Presentation for .NET在C#和VB.NET中向PowerPoint文档添加数字签名或删除PowerPoint文档中的现有数字签名。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

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

本文演示了如何使用Spire.Presentation for .NET在C#和VB.NET中向PowerPoint文档添加数字签名或删除PowerPoint文档中的现有数字签名。可点击此处下载最新版测试。

这么优秀的国产工具怎能错过呢!想要获取更多福利的朋友哦~


添加数字签名

C#

using Spire.Presentation;
using System;
using System.Security.Cryptography.X509Certificates;

namespace AddDigitalSignature
{
    class Program
    {
        static void Main(string[] args)
        {
            //Create a Presentation instance
            Presentation ppt = new Presentation();
            //Load a PowerPoint document
            ppt.LoadFromFile("Input.pptx");

            //Add digital signature
            X509Certificate2 x509 = new X509Certificate2("gary.pfx", "e-iceblue");
            ppt.AddDigitalSignature(x509, "e-iceblue", DateTime.Now);

            //Save the result document
            ppt.SaveToFile("AddDigitalSignature.pptx", FileFormat.Pptx2013);
        }
    }
}

VB.NET

Imports Spire.Presentation
Imports System
Imports System.Security.Cryptography.X509Certificates

Namespace AddDigitalSignature
    Class Program
        Private Shared Sub Main(ByVal args As String())
            Dim ppt As Presentation = New Presentation()
            ppt.LoadFromFile("Input.pptx")
            Dim x509 As X509Certificate2 = New X509Certificate2("gary.pfx", "e-iceblue")
            ppt.AddDigitalSignature(x509, "e-iceblue", DateTime.Now)
            ppt.SaveToFile("AddDigitalSignature.pptx", FileFormat.Pptx2013)
        End Sub
    End Class
End Namespace

效果图:

国产PPT格式控件Spire.Presentation功能演示:使用C#在PowerPoint中添加或删除数字签名

删除数字签名

C#

using Spire.Presentation;
using System;
using System.Security.Cryptography.X509Certificates;

namespace RemoveDigitalSignature
{
    class Program
    {
        static void Main(string[] args)
        {
            //Create a Presentation instance
            Presentation ppt = new Presentation();
            //Load a PowerPoint document 
            ppt.LoadFromFile("AddDigitalSignature.pptx");

            //Detect if the document is digitally signed
            if (ppt.IsDigitallySigned == true)
            {
                //Remove the digital signature
                ppt.RemoveAllDigitalSignatures();
            }

            //Save the result document
            ppt.SaveToFile("RemoveDigitalSignature.pptx", FileFormat.Pptx2013);

        }
    }
}

VB.NET

Imports Spire.Presentation
Imports System
Imports System.Security.Cryptography.X509Certificates

Namespace RemoveDigitalSignature
    Class Program
        Private Shared Sub Main(ByVal args As String())
            Dim ppt As Presentation = New Presentation()
            ppt.LoadFromFile("AddDigitalSignature.pptx")

            If ppt.IsDigitallySigned = True Then
                ppt.RemoveAllDigitalSignatures()
            End If

            ppt.SaveToFile("RemoveDigitalSignature.pptx", FileFormat.Pptx2013)
        End Sub
    End Class
End Namespace

效果图:

国产PPT格式控件Spire.Presentation功能演示:使用C#在PowerPoint中添加或删除数字签名

还想要更多吗?您可以点击阅读【2020 · E-iceblue最新资源整合】查找需要的教程资源。慧都是E-iceblue官方友好合作伙伴,如果您对spire.Presentation感兴趣,可以了解具体授权价格和使用机制。

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP