如何在PDF上加蓋條碼
如何在 C# 中將條碼加蓋於 PDF 文件上
- 下載 C# 庫以在 PDF 上加蓋條碼
- 使用指定的條碼類型和數值創建條碼
- 指定條碼大小
- 利用
StampToExistingPdfPage
方法在單一 PDF 頁面上加蓋條碼 - 使用
StampToExistingPdfPages
方法在多個PDF頁面上印章條碼
立即在您的專案中使用IronBarcode,並享受免費試用。
在現有的 PDF 頁面上蓋上條碼
除了將條形碼導出為PDF之外,IronBarcode中最受歡迎的功能之一是可以將GeneratedBarcode
直接加蓋在用戶現有的PDF文檔上。 以下程式碼片段示範了如何做到這一點。
:path=/static-assets/barcode/content-code-examples/how-to/StampBarcodeOnExistingPdfPage.cs
using IronBarCode;
GeneratedBarcode myBarcode = BarcodeWriter.CreateBarcode("https://ironsoftware.com/csharp/barcode/", BarcodeEncoding.Code128, 200, 100);
myBarcode.StampToExistingPdfPage("pdf_file_path.pdf", x: 200, y: 100, 3, "password");
Imports IronBarCode
Private myBarcode As GeneratedBarcode = BarcodeWriter.CreateBarcode("https://ironsoftware.com/csharp/barcode/", BarcodeEncoding.Code128, 200, 100)
myBarcode.StampToExistingPdfPage("pdf_file_path.pdf", x:= 200, y:= 100, 3, "password")
從上述程式碼片段中,我們只需使用GeneratedBarcode
物件調用StampToExistingPdfPage()
方法,把物件蓋章到 PDF 文件上。 以下是此方法中使用的參數:
pdfFilePath
:指向記憶體中 PDF 文件的路徑的System.String。x
:PDF 頁面的水平位置,以像素表示的 System.Int32。y
:PDF 頁面在像素中的垂直位置的 System.Int32。pageNumber
:PDF 頁面要加上浮水印的 System.Int32。請注意,此值是以 1 作為起始索引,因此第一頁用 1 表示。-
password
:要輸入PDF的密碼為System.String。 此參數是可選的,僅用於受密碼保護的 PDF 文件。 如果需要加蓋的 PDF 沒有被密碼保護,使用者可以將此參數留空。執行上述程式碼片段將會立即將
GeneratedBarcode
印入 PDF 文件,而不需要中間文件儲存步驟。
在多個PDF頁面上蓋章條碼
有時,同一個條碼需要印在多個頁面上,而不是僅印在一個頁面上。 用戶可以使用 GeneratedBarcode
類別中的 StampToExistingPdfPages()
方法,直接在多個頁面上印章相同的條碼,而不是對上述方法進行循環。 以下程式碼片段演示了如何使用此方法。
:path=/static-assets/barcode/content-code-examples/how-to/StampBarcodeOnMultiplePdfPages.cs
using IronBarCode;
using System.Collections.Generic;
GeneratedBarcode myBarcode = BarcodeWriter.CreateBarcode("https://ironsoftware.com/csharp/barcode/", BarcodeEncoding.Code128, 200, 100);
List<int> pages = new List<int>();
pages.Add(1);
pages.Add(2);
pages.Add(3);
myBarcode.StampToExistingPdfPages("pdf_file_path.pdf", x: 200, y: 100, pages, "password");
Imports IronBarCode
Imports System.Collections.Generic
Private myBarcode As GeneratedBarcode = BarcodeWriter.CreateBarcode("https://ironsoftware.com/csharp/barcode/", BarcodeEncoding.Code128, 200, 100)
Private pages As New List(Of Integer)()
pages.Add(1)
pages.Add(2)
pages.Add(3)
myBarcode.StampToExistingPdfPages("pdf_file_path.pdf", x:= 200, y:= 100, pages, "password")
以下是此方法中使用的參數:
pdfFilePath
:指向記憶體中 PDF 文件的路徑的System.String。x
:PDF 頁面的水平位置,以像素表示的 System.Int32。y
:PDF 頁面在像素中的垂直位置的 System.Int32。pageNumbers
:表示要加蓋的 PDF 頁面的 IEnumerable。注意這些值是從 1 開始索引,因此 PDF 的第一頁表示為 1。 password
:要輸入PDF的密碼為System.String。 此參數是可選的,僅用於受密碼保護的 PDF 文件。 如果需要加蓋的 PDF 沒有被密碼保護,使用者可以將此參數留空。