標籤:... 儲存到檔案 簽名 儲存 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添加可見的數位簽章