設置 PDF 文檔的 XMP 元數(shù)據
Spire.PDF for .NET 是一款專門對 Word 文檔進行操作的 .NET 類庫。致力于在于幫助開發(fā)人員輕松快捷高效地創(chuàng)建、編輯、轉換和打印 Microsoft Word 文檔,而無需安裝 Microsoft Word。
行號用于在每行文本旁邊顯示 Word 自動計算的行數(shù)。當我們需要參考合同或法律文件等文檔中的特定行時,它非常有用。word中的行號功能允許我們設置起始值、編號間隔、與文本的距離以及行號的編號方式。使用 Spire.Doc,我們可以實現(xiàn)上述所有功能。本文將介紹如何將 HTML 轉換為 PDF。
歡迎加入spire技術交流群:767755948
XMP 是一種文件標簽技術,可讓你在內容創(chuàng)建過程中將元數(shù)據嵌入文件本身。有了支持 XMP 的應用程序,你的工作組就能以一種易于被你的團隊以及軟件應用程序、硬件設備甚至文件格式理解的格式,捕獲有關項目的有意義的信息(如標題和描述、可搜索的關鍵字以及最新的作者和版權信息)。
在 Spire.PDF 3.6.135 及以上版本中,我們添加了一項新功能,可從 XML 文檔中讀取、設置和加載現(xiàn)有的 XMP 數(shù)據。本文將介紹如何在創(chuàng)建 PDF 文檔時設置 XMP 元數(shù)據。
代碼片段:
第 1 步:初始化一個新的PdfDocument類實例。
PdfDocument doc = new PdfDocument();第 2 步:從 PDF 文檔中獲取 XMP 元數(shù)據。
XmpMetadata meta = doc.XmpMetaData;第 3 步:為元數(shù)據設置作者、創(chuàng)建數(shù)據、創(chuàng)建者、關鍵字等。
meta.SetAuthor("E-iceblue"); meta.SetCreateDate(DateTime.Now); meta.SetCreator("Spire.PDF"); meta.SetCustomProperty("Field", "NewValue"); meta.SetKeywords("XMP"); meta.SetProducer("E-icenlue Co,.Ltd"); meta.SetSubject("XMP Metadata"); meta.SetTitle("Set XMP Metadata in PDF");第 4 步:保存文件。
doc.SaveToFile("XMP.pdf", FileFormat.PDF);輸出:
查看 PDF 文檔中的元數(shù)據,請使用 Acrobat 或 Acrobat Reader 打開該文檔,并在文件菜單中選擇 "文檔屬性"。
完整代碼:
[C#]
using Spire.Pdf; using Spire.Pdf.Xmp; using System; namespace SetXMPMetadata { class Program { static void Main(string[] args) { PdfDocument doc = new PdfDocument(); XmpMetadata meta = doc.XmpMetaData; meta.SetAuthor("E-iceblue"); meta.SetCreateDate(DateTime.Now); meta.SetCreator("Spire.PDF"); meta.SetCustomProperty("Field", "NewValue"); meta.SetKeywords("XMP"); meta.SetProducer("E-icenlue Co,.Ltd"); meta.SetSubject("XMP Metadata"); meta.SetTitle("Set XMP Metadata in PDF"); doc.SaveToFile("XMP.pdf", FileFormat.PDF); } } }