C#中如何給PDF添加可見的數位簽章

來源:互聯網
上載者:User

標籤:...   儲存到檔案   簽名   儲存   tag   rectangle   c#   config   tin   

數位簽章廣泛用於保護PDF文檔,可見數位簽章在日常生活中是相當重要的。在這篇文章中我將與大家分享如何給PDF檔案添加可見的數位簽章。

首先我下載了一個由E-iceblue公司開發的免費版的PDF組件-Free Spire.PDF,控制項安裝好後,再通過下面所提及的路徑把Bin檔案夾裡的Spire.PDF.dll添加為引用。

路徑:"...\Spire.pdf-fe\Bin\NET4.0\ Spire.PDF.dll"

接下來我將提供一些程式碼片段來向大家展示如何添加可見的數位簽章:

 

步驟1:建立一個PDF文檔並載入一個PDF認證

//建立一個PDF文檔對象,再添加一個新頁面。PdfDocument doc = new PdfDocument();doc.Pages.Add();//載入一個PDF認證           PdfCertificate cert = new PdfCertificate(@"C:\Users\Administrator\Desktop\gary.pfx", "e-iceblue");

步驟2:添加數位簽章並設定數位簽章的位置

//添加數位簽章var signature = new PdfSignature(doc, doc.Pages[0], cert, "Requestd1");//設定數位簽章的位置signature.Bounds = new RectangleF(new PointF(280, 600), new SizeF(260, 90));

步驟3:設定顯示文字屬性

signature.IsTag = true;

步驟4:填充數位簽章的內容

signature.DigitalSignerLable = "Digitally signed by";signature.DigitalSigner = "Gary for Test";signature.DistinguishedName = "DN:";signature.LocationInfoLabel = "Location:";signature.LocationInfo = "London";signature.ReasonLabel = "Reason: ";signature.Reason = "Le document est certifie";signature.DateLabel = "Date: ";signature.Date = DateTime.Now;signature.ContactInfoLabel = "Contact: ";signature.ContactInfo = "123456789";signature.Certificated = false;signature.ConfigGraphicType = ConfiguerGraphicType.TextSignInformation;

步驟5:設定數位簽章的文檔許可權

signature.DocumentPermissions = PdfCertificationFlags.ForbidChanges;

步驟6:將文檔以PDF格式儲存到檔案夾中

//儲存文檔doc.SaveToFile("sample.pdf");//開啟文檔System.Diagnostics.Process.Start("sample.pdf");

 


 

感謝您的瀏覽,希望本文能帶給您一定的協助。

 

C#中如何給PDF添加可見的數位簽章

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.