国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

PDF控件Spire.PDF for .NET【安全】演示:使用文本或/和圖像對 PDF 進(jìn)行數(shù)字簽名

這篇具有很好參考價值的文章主要介紹了PDF控件Spire.PDF for .NET【安全】演示:使用文本或/和圖像對 PDF 進(jìn)行數(shù)字簽名。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

數(shù)字簽名確保簽名的文檔不能被除其作者之外的任何人更改。添加簽名是確保文檔內(nèi)容真實性的最常見方法。PDF 文檔中的可視數(shù)字簽名可以顯示文本或圖像(例如手寫簽名)。本文從以下三個方面介紹如何使用Spire.PDF for .NET對PDF 進(jìn)行數(shù)字簽名。

Spire.PDF for .NET?是一款獨立 PDF 控件,用于 .NET 程序中創(chuàng)建、編輯和操作 PDF 文檔。使用 Spire.PDF 類庫,開發(fā)人員可以新建一個 PDF 文檔或者對現(xiàn)有的 PDF 文檔進(jìn)行處理,且無需安裝 Adobe Acrobat。

E-iceblue?功能類庫Spire 系列文檔處理組件均由中國本土團(tuán)隊研發(fā),不依賴第三方軟件,不受其他國家的技術(shù)或法律法規(guī)限制,同時適配國產(chǎn)操作系統(tǒng)如中科方德、中標(biāo)麒麟等,兼容國產(chǎn)文檔處理軟件 WPS(如 .wps/.et/.dps 等格式

Spire.PDF for.net下載? ?Spire.PDF for java下載

安裝適用于 .NET 的 Spire.PDF

首先,您需要將 Spire.PDF for .NET 包中包含的 DLL 文件添加為 .NET 項目中的引用。DLL 文件可以從此鏈接下載或通過NuGet安裝。

PM> Install-Package Spire.PDF

使用文本對 PDF 進(jìn)行數(shù)字簽名

以下是將純文本簽名添加到 PDF 文檔的步驟。

  • 創(chuàng)建一個PdfDocument對象,并使用PdfDocument.LoadFromFile()方法加載示例 PDF 文件。
  • 初始化PdfCertificate對象時加載 .pfx 證書文件。
  • 創(chuàng)建一個PdfSignature對象,指定其在文檔中的位置和大小。
  • 將簽名圖形模式設(shè)置為SignDetail,這將以純文本形式顯示簽名詳細(xì)信息。
  • 通過PdfSignature對象下的屬性設(shè)置簽名詳細(xì)信息,包括姓名、聯(lián)系信息、原因、日期等。
  • 將認(rèn)證文檔的權(quán)限設(shè)置為ForbidChangesAllowFormFill。
  • 使用PdfDocument.SaveToFile()方法將文檔保存到另一個文件。

【C#】

using Spire.Pdf;
using Spire.Pdf.Security;
using System;
using System.Drawing;
using Spire.Pdf.Graphics;

namespace AddTextSignature
{
class Program
{
static void Main(string[] args)
{
//Create a PdfDocument object
PdfDocument doc = new PdfDocument();

//Load a sample PDF file
doc.LoadFromFile("C:\\Users\\Administrator\\Desktop\\sample.pdf");

//Load the certificate
PdfCertificate cert = new PdfCertificate("C:\\Users\\Administrator\\Desktop\\MyCertificate.pfx", "e-iceblue");

//Create a PdfSignature object and specify its position and size
PdfSignature signature = new PdfSignature(doc, doc.Pages[doc.Pages.Count-1], cert, "MySignature");
RectangleF rectangleF = new RectangleF(doc.Pages[0].ActualSize.Width - 340, 150, 290, 100);
signature.Bounds = rectangleF;
signature.Certificated = true;

//Set the graphics mode to sign detail
signature.GraphicsMode = GraphicMode.SignDetail;

//Set the signature content
signature.NameLabel = "Signer:";
signature.Name = "Gary";
signature.ContactInfoLabel = "Phone:";
signature.ContactInfo = "0123456";
signature.DateLabel = "Date:";
signature.Date = DateTime.Now;
signature.LocationInfoLabel = "Location:";
signature.LocationInfo = "USA";
signature.ReasonLabel = "Reason:";
signature.Reason = "I am the author";
signature.DistinguishedNameLabel = "DN:";
signature.DistinguishedName = signature.Certificate.IssuerName.Name;

//Set the signature font
signature.SignDetailsFont = new PdfTrueTypeFont(new Font("Arial Unicode MS",12f,FontStyle.Regular));

//Set the document permission to forbid changes but allow form fill
signature.DocumentPermissions = PdfCertificationFlags.ForbidChanges | PdfCertificationFlags.AllowFormFill;

//Save to file
doc.SaveToFile("TextSignature.pdf");
doc.Close();
}
}
}

【VB.NET】

Imports Spire.Pdf
Imports Spire.Pdf.Security
Imports System
Imports System.Drawing
Imports Spire.Pdf.Graphics

Namespace AddTextSignature
Class Program
Shared Sub Main(ByVal args() As String)
'Create a PdfDocument object
Dim doc As PdfDocument = New PdfDocument()

'Load a sample PDF file
doc.LoadFromFile("C:\\Users\\Administrator\\Desktop\\sample.pdf")

'Load the certificate
Dim cert As PdfCertificate = New PdfCertificate("C:\\Users\\Administrator\\Desktop\\MyCertificate.pfx","e-iceblue")

'Create a PdfSignature object and specify its position and size
Dim signature As PdfSignature = New PdfSignature(doc,doc.Pages(doc.Pages.Count-1),cert,"MySignature")
Dim rectangleF As RectangleF = New RectangleF(doc.Pages(0).ActualSize.Width - 340,150,290,100)
signature.Bounds = rectangleF
signature.Certificated = True

'Set the graphics mode to sign detail
signature.GraphicsMode = GraphicMode.SignDetail

'Set the signature content
signature.NameLabel = "Signer:"
signature.Name = "Gary"
signature.ContactInfoLabel = "Phone:"
signature.ContactInfo = "0123456"
signature.DateLabel = "Date:"
signature.Date = DateTime.Now
signature.LocationInfoLabel = "Location:"
signature.LocationInfo = "USA"
signature.ReasonLabel = "Reason:"
signature.Reason = "I am the author"
signature.DistinguishedNameLabel = "DN:"
signature.DistinguishedName = signature.Certificate.IssuerName.Name

'Set the signature font
signature.SignDetailsFont = New PdfTrueTypeFont(New Font("Arial Unicode MS",12f,FontStyle.Regular))

'Set the document permission to forbid changes but allow form fill
signature.DocumentPermissions = PdfCertificationFlags.ForbidChanges | PdfCertificationFlags.AllowFormFill

'Save to file
doc.SaveToFile("TextSignature.pdf")
doc.Close()
End Sub
End Class
End Namespace

PDF控件Spire.PDF for .NET【安全】演示:使用文本或/和圖像對 PDF 進(jìn)行數(shù)字簽名,Spire.PDF for .Net 教程,pdf,.net,安全,spire.pdf,數(shù)字簽名

使用圖像對 PDF 進(jìn)行數(shù)字簽名

以下是將圖像簽名添加到 PDF 文檔的步驟。

  • 創(chuàng)建一個PdfDocument對象,并使用PdfDocument.LoadFromFile()方法加載示例 PDF 文件。
  • 初始化PdfCertificate對象時加載 .pfx 證書文件。
  • 創(chuàng)建一個PdfSignature對象,指定其在文檔中的位置和大小。
  • 將簽名圖形模式設(shè)置為SignImageOnly,這將僅顯示簽名圖像。
  • 通過PdfSignature.SignImageSource屬性設(shè)置簽名圖像。
  • 將認(rèn)證文檔的權(quán)限設(shè)置為ForbidChangesAllowFormFill。
  • 使用PdfDocument.SaveToFile()方法將文檔保存到另一個文件。

【C#】

using Spire.Pdf;
using Spire.Pdf.Graphics;
using Spire.Pdf.Security;
using System.Drawing;

namespace AddImageSignature
{
class Program
{
static void Main(string[] args)
{
//Create a PdfDocument object
PdfDocument doc = new PdfDocument();

//Load a sample PDF file
doc.LoadFromFile("C:\\Users\\Administrator\\Desktop\\sample.pdf");

//Load the certificate
PdfCertificate cert = new PdfCertificate("C:\\Users\\Administrator\\Desktop\\MyCertificate.pfx", "e-iceblue");

//Create a PdfSignature object and specify its position and size
PdfSignature signature = new PdfSignature(doc, doc.Pages[doc.Pages.Count - 1], cert, "MySignature");
RectangleF rectangleF = new RectangleF(doc.Pages[0].ActualSize.Width - 200, 150, 130, 130);
signature.Bounds = rectangleF;
signature.Certificated = true;

//Set the graphics mode to image only
signature.GraphicsMode = GraphicMode.SignImageOnly;

//Set the sign image source
signature.SignImageSource = PdfImage.FromFile("C:\\Users\\Administrator\\Desktop\\verified.png");

//Set the signature font
signature.SignDetailsFont = new PdfTrueTypeFont(new Font("Arial Unicode MS", 12f, FontStyle.Regular));

//Set the document permission to forbid changes but allow form fill
signature.DocumentPermissions = PdfCertificationFlags.ForbidChanges | PdfCertificationFlags.AllowFormFill;

//Save to file
doc.SaveToFile("ImageSignature.pdf");
doc.Close();
}
}
}

【VB.NET】

Imports Spire.Pdf
Imports Spire.Pdf.Graphics
Imports Spire.Pdf.Security
Imports System.Drawing

Namespace AddImageSignature
Class Program
Shared Sub Main(ByVal args() As String)
'Create a PdfDocument object
Dim doc As PdfDocument = New PdfDocument()

'Load a sample PDF file
doc.LoadFromFile("C:\\Users\\Administrator\\Desktop\\sample.pdf")

'Load the certificate
Dim cert As PdfCertificate = New PdfCertificate("C:\\Users\\Administrator\\Desktop\\MyCertificate.pfx","e-iceblue")

'Create a PdfSignature object and specify its position and size
Dim signature As PdfSignature = New PdfSignature(doc,doc.Pages(doc.Pages.Count - 1),cert,"MySignature")
Dim rectangleF As RectangleF = New RectangleF(doc.Pages(0).ActualSize.Width - 200,150,130,130)
signature.Bounds = rectangleF
signature.Certificated = True

'Set the graphics mode to image only
signature.GraphicsMode = GraphicMode.SignImageOnly

'Set the sign image source
signature.SignImageSource = PdfImage.FromFile("C:\\Users\\Administrator\\Desktop\\verified.png")

'Set the signature font
signature.SignDetailsFont = New PdfTrueTypeFont(New Font("Arial Unicode MS", 12f, FontStyle.Regular))

'Set the document permission to forbid changes but allow form fill
signature.DocumentPermissions = PdfCertificationFlags.ForbidChanges | PdfCertificationFlags.AllowFormFill

'Save to file
doc.SaveToFile("ImageSignature.pdf")
doc.Close()
End Sub
End Class
End Namespace

PDF控件Spire.PDF for .NET【安全】演示:使用文本或/和圖像對 PDF 進(jìn)行數(shù)字簽名,Spire.PDF for .Net 教程,pdf,.net,安全,spire.pdf,數(shù)字簽名

使用文本和圖像對 PDF 進(jìn)行數(shù)字簽名

以下是使用文本和圖像對 PDF 文檔進(jìn)行數(shù)字簽名的步驟。

  • 創(chuàng)建一個PdfDocument對象,并使用PdfDocument.LoadFromFile()方法加載示例 PDF 文件。
  • 初始化PdfCertificate對象時加載 .pfx 證書文件。
  • 創(chuàng)建一個PdfSignature對象,指定其在文檔中的位置和大小。
  • 將簽名圖形模式設(shè)置為SignImageAndSignDetail,這將同時顯示簽名圖像和詳細(xì)信息。
  • 通過PdfSignature.SignImageSource屬性設(shè)置簽名圖像,并通過 PdfSignature 對象下的其他屬性設(shè)置簽名詳細(xì)信息,包括姓名、聯(lián)系信息、原因、日期等。
  • 將認(rèn)證文檔的權(quán)限設(shè)置為ForbidChangesAllowFormFill。
  • 使用PdfDocument.SaveToFile()方法將文檔保存到另一個文件。

【C#】

using Spire.Pdf;
using Spire.Pdf.Security;
using System;
using System.Drawing;
using Spire.Pdf.Graphics;

namespace AddTextAndImageSignature
{
class Program
{
static void Main(string[] args)
{
//Create a PdfDocument object
PdfDocument doc = new PdfDocument();

//Load a sample PDF file
doc.LoadFromFile("C:\\Users\\Administrator\\Desktop\\sample.pdf");

//Load the certificate
PdfCertificate cert = new PdfCertificate("C:\\Users\\Administrator\\Desktop\\MyCertificate.pfx", "e-iceblue");

//Create a PdfSignature object and specify its position and size
PdfSignature signature = new PdfSignature(doc, doc.Pages[doc.Pages.Count - 1], cert, "MySignature");
RectangleF rectangleF = new RectangleF(doc.Pages[0].ActualSize.Width - 320, 150, 260, 110);
signature.Bounds = rectangleF;
signature.Certificated = true;

//Set the graphics mode to image and sign detail
signature.GraphicsMode = GraphicMode.SignImageAndSignDetail;

//Set the signature content
signature.NameLabel = "Signer:";
signature.Name = "Gary";
signature.ContactInfoLabel = "Phone:";
signature.ContactInfo = "0123456";
signature.DateLabel = "Date:";
signature.Date = DateTime.Now;
signature.LocationInfoLabel = "Location:";
signature.LocationInfo = "USA";
signature.ReasonLabel = "Reason:";
signature.Reason = "I am the author";
signature.DistinguishedNameLabel = "DN:";
signature.DistinguishedName = signature.Certificate.IssuerName.Name;

//Set the signature image source
signature.SignImageSource = PdfImage.FromFile("C:\\Users\\Administrator\\Desktop\\handSignature.png");

//Set the signature font
signature.SignDetailsFont = new PdfTrueTypeFont(new Font("Arial Unicode MS", 12f, FontStyle.Regular));

//Set the document permission to forbid changes but allow form fill
signature.DocumentPermissions = PdfCertificationFlags.ForbidChanges | PdfCertificationFlags.AllowFormFill;

//Save to file
doc.SaveToFile("TextAndImageSignature.pdf");
doc.Close();
}
}
}

【VB.NET】

Imports Spire.Pdf
Imports Spire.Pdf.Security
Imports System
Imports System.Drawing
Imports Spire.Pdf.Graphics

Namespace AddTextAndImageSignature
Class Program
Shared Sub Main(ByVal args() As String)
'Create a PdfDocument object
Dim doc As PdfDocument = New PdfDocument()

'Load a sample PDF file
doc.LoadFromFile("C:\\Users\\Administrator\\Desktop\\sample.pdf")

'Load the certificate
Dim cert As PdfCertificate = New PdfCertificate("C:\\Users\\Administrator\\Desktop\\MyCertificate.pfx","e-iceblue")

'Create a PdfSignature object and specify its position and size
Dim signature As PdfSignature = New PdfSignature(doc,doc.Pages(doc.Pages.Count - 1),cert,"MySignature")
Dim rectangleF As RectangleF = New RectangleF(doc.Pages(0).ActualSize.Width - 320,150,260,110)
signature.Bounds = rectangleF
signature.Certificated = True

'Set the graphics mode to image and sign detail
signature.GraphicsMode = GraphicMode.SignImageAndSignDetail

'Set the signature content
signature.NameLabel = "Signer:"
signature.Name = "Gary"
signature.ContactInfoLabel = "Phone:"
signature.ContactInfo = "0123456"
signature.DateLabel = "Date:"
signature.Date = DateTime.Now
signature.LocationInfoLabel = "Location:"
signature.LocationInfo = "USA"
signature.ReasonLabel = "Reason:"
signature.Reason = "I am the author"
signature.DistinguishedNameLabel = "DN:"
signature.DistinguishedName = signature.Certificate.IssuerName.Name

'Set the signature image source
signature.SignImageSource = PdfImage.FromFile("C:\\Users\\Administrator\\Desktop\\handSignature.png")

'Set the signature font
signature.SignDetailsFont = New PdfTrueTypeFont(New Font("Arial Unicode MS", 12f, FontStyle.Regular))

'Set the document permission to forbid changes but allow form fill
signature.DocumentPermissions = PdfCertificationFlags.ForbidChanges | PdfCertificationFlags.AllowFormFill

'Save to file
doc.SaveToFile("TextAndImageSignature.pdf")
doc.Close()
End Sub
End Class
End Namespace

PDF控件Spire.PDF for .NET【安全】演示:使用文本或/和圖像對 PDF 進(jìn)行數(shù)字簽名,Spire.PDF for .Net 教程,pdf,.net,安全,spire.pdf,數(shù)字簽名

以上便是如何使用文本或/和圖像對 PDF 進(jìn)行數(shù)字簽名,如果您有其他問題也可以繼續(xù)瀏覽本系列文章,獲取相關(guān)教程~文章來源地址http://www.zghlxwxcb.cn/news/detail-819270.html

到了這里,關(guān)于PDF控件Spire.PDF for .NET【安全】演示:使用文本或/和圖像對 PDF 進(jìn)行數(shù)字簽名的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務(wù),不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實不符,請點擊違法舉報進(jìn)行投訴反饋,一經(jīng)查實,立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費用

相關(guān)文章

  • PDF控件Spire.PDF for .NET【安全】演示:在 PDF 中添加或刪除數(shù)字簽名

    PDF控件Spire.PDF for .NET【安全】演示:在 PDF 中添加或刪除數(shù)字簽名

    隨著 PDF 文檔在商業(yè)中越來越流行,確保其真實性已成為一個關(guān)鍵問題。使用基于證書的簽名對 PDF 進(jìn)行簽名可以保護(hù)內(nèi)容,還可以讓其他人知道誰簽署或批準(zhǔn)了該文檔。在本文中,您將了解如何使用不可見或可見簽名對 PDF 進(jìn)行數(shù)字簽名,以及如何使用Spire.PDF for .NET從 PDF 中

    2024年02月03日
    瀏覽(23)
  • Spire.PDF for .NET【文檔操作】演示:合并 PDF 文件并添加頁碼

    Spire.PDF for .NET【文檔操作】演示:合并 PDF 文件并添加頁碼

    需要合并 PDF 的原因有很多。例如,合并 PDF 文件允許您打印單個文件,而不是為打印機排隊多個文檔,組合相關(guān)文件通過減少要搜索和組織的文件數(shù)量來簡化管理和存儲多個文檔的過程。在本文中,您將學(xué)習(xí)如何使用Spire.PDF for .NET將多個 PDF 文檔合并為一個 PDF 文檔,以及如

    2024年04月09日
    瀏覽(27)
  • Spire.PDF for .NET【文檔操作】演示:動態(tài)創(chuàng)建 PDF 并將其發(fā)送到客戶端瀏覽器

    Spire.PDF for .NET【文檔操作】演示:動態(tài)創(chuàng)建 PDF 并將其發(fā)送到客戶端瀏覽器

    可移植文檔格式 (PDF) 是 Adobe 制定的獨立規(guī)范的固定版式文檔。它封裝了完整的描述,包括文本字體、圖形和顯示它所需的其他信息。 Spire.PDF for .NET?是一款獨立 PDF 控件,用于 .NET 程序中創(chuàng)建、編輯和操作 PDF 文檔。使用 Spire.PDF 類庫,開發(fā)人員可以新建一個 PDF 文檔或者對現(xiàn)

    2024年04月25日
    瀏覽(27)
  • PDF處理控件aspose.PDF功能演示:使用 C# .NET 復(fù)制 PDF 頁面

    PDF處理控件aspose.PDF功能演示:使用 C# .NET 復(fù)制 PDF 頁面

    作為程序員,您通常必須以純文本形式從 PDF 文件中提取內(nèi)容以進(jìn)行進(jìn)一步處理,例如分析和信息提取。如果沒有合適的工具,處理 PDF 文件并將整個 PDF 轉(zhuǎn)換為 TXT 格式是一項麻煩的任務(wù)。因此,在本博客中,我們將探討如何使用 C# 以編程方式將 PDF 文件轉(zhuǎn)換為 TXT 格式。 A

    2024年01月23日
    瀏覽(19)
  • Spire.PDF for .NET 9.8.5 Crack

    Spire.PDF for .NET 9.8.5 Crack

    Spire.PDF for .NET is a professional PDF API applied to creating, writing, editing, handling and reading PDF files without any external dependencies within .NET ( C#, VB.NET, ASP.NET, .NET Core, .NET 5.0, .NET 6.0, .NET 7.0, MonoAndroid and Xamarin.iOS ) application. Using this .NET PDF library, you can implement rich capabilities to create PDF files from sc

    2024年02月10日
    瀏覽(70)
  • PDF處理控件Aspose.PDF功能演示:使用Java將Base64字符串轉(zhuǎn)換為PDF/JPG/PNG圖像

    PDF處理控件Aspose.PDF功能演示:使用Java將Base64字符串轉(zhuǎn)換為PDF/JPG/PNG圖像

    Aspose.PDF ?是一款高級PDF處理API,可以在跨平臺應(yīng)用程序中輕松生成,修改,轉(zhuǎn)換,呈現(xiàn),保護(hù)和打印文檔。無需使用Adobe Acrobat。此外,API提供壓縮選項,表創(chuàng)建和處理,圖形和圖像功能,廣泛的超鏈接功能,圖章和水印任務(wù),擴展的安全控件和自定義字體處理。 Aspose API支持

    2024年02月04日
    瀏覽(44)
  • Word控件Spire.Doc 【圖像形狀】教程(1) ;如何在 Word 中插入圖像(C#/VB.NET)

    Word控件Spire.Doc 【圖像形狀】教程(1) ;如何在 Word 中插入圖像(C#/VB.NET)

    Spire.Doc for .NET是一款專門對 Word 文檔進(jìn)行操作的 .NET 類庫。在于幫助開發(fā)人員無需安裝 Microsoft Word情況下,輕松快捷高效地創(chuàng)建、編輯、轉(zhuǎn)換和打印 Microsoft Word 文檔。擁有近10年專業(yè)開發(fā)經(jīng)驗Spire系列辦公文檔開發(fā)工具,專注于創(chuàng)建、編輯、轉(zhuǎn)換和打印Word/PDF/Excel等格式文件處

    2024年02月07日
    瀏覽(22)
  • Spire.Barcode for Java 5.1.0 + Spire.Barcode for .NET 7.2.0

    Spire.Barcode for Java 5.1.0 + Spire.Barcode for .NET 7.2.0

    Spire.Barcode for Java is a professional barcode component specially designed for developers to generate, read and scan 1D 2D barcodes on Java applications (J2SE and J2EE). Developers and programmers can use Spire.Barcode to add Enterprise-Level barcode formats to their Java applications quickly and easily. Spire.Barcode for Java provides a very easy way to

    2024年02月16日
    瀏覽(47)
  • Spire.Office for.NET Crack

    Spire.Office for.NET Crack

    Spire.Office for.NET是E-iceblue提供的企業(yè)級Office.NET API的組合。它包括Spire.Doc、Spire.XLS、Spire.Seadsheet、Spire.Presentation、Spire_PDF、Spire.DataExport、SpireOfficeViewer、Spire-PDFViewer、Spire.DocViewer、Spire.Barcode和Spire.Email.Spire.Office包含上述.NET API的最新版本。 使用Spire.Officefor.NET,開發(fā)人員可以創(chuàng)

    2024年02月15日
    瀏覽(25)
  • Spire.Office for .NET 8.4.1 FIX

    Spire.Office for .NET 8.4.1 FIX

    Spire.Office for .NET is a combination of Enterprise-Level Office .NET API offered by E-iceblue. It includes Spire.Doc, Spire.XLS, Spire.Spreadsheet, Spire.Presentation, Spire.PDF, Spire.DataExport, Spire.OfficeViewer, Spire.PDFViewer, Spire.DocViewer, Spire.Barcode and Spire.Email. Spire.Office contains the most up-to-date versions of the above .NET API. ?

    2024年02月02日
    瀏覽(30)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包