新增內容戳記
HTML 盖章利用輸入的 HTML 片段,通過內聯 CSS 樣式控制設計。在上述代碼中,我們將圖像包含在 HTML 中,然後將它們蓋章到文件上。
IronPDF 提供多功能的蓋章選項,包括 HTML、文本、圖像和條碼。對於每個章,可以精確地定義其位置,使用垂直和水平的一般位置。這些位置可以通過偏移進一步調整,以實現像素級精確放置。此外,大多數蓋章類型包括不透明度和旋轉屬性。
import {PdfDocument, HorizontalAlignment, VerticalAlignment} from "@ironsoftware/ironpdf"; (async () => { // Open existing PDF const pdf = await PdfDocument.fromFile("Sample.pdf"); // Configure the HTML stamp const stampOptions = { horizontalAlignment: HorizontalAlignment.Center, verticalAlignment: VerticalAlignment.Bottom, behindExistingContent: false, opacity: 30 }; const html = "<img src='https://ironpdf.com/img/products/ironpdf-logo-text-dotnet.svg'/>" // Apply the stamp to the PDF await pdf.stampHtml(html, {htmlStampOptions: stampOptions}); // Save the stamped PDF await pdf.saveAs("stamped_image.pdf"); })();
HTML 盖章利用輸入的 HTML 片段,通過內聯 CSS 樣式控制設計。在上述代碼中,我們將圖像包含在 HTML 中,然後將它們蓋章到文件上。
IronPDF 提供多功能的蓋章選項,包括 HTML、文本、圖像和條碼。對於每個章,可以精確地定義其位置,使用垂直和水平的一般位置。這些位置可以通過偏移進一步調整,以實現像素級精確放置。此外,大多數蓋章類型包括不透明度和旋轉屬性。