按索引移动印章

Contents
[ ]

在 PDF 编辑中,可能需要调整现有橡胶印章的位置。此代码片段展示了如何:

  • 在同一页面上添加多个印章
  • 使用它们的索引准备重新定位。
  • 可选地通过指定其页面、索引和新坐标来移动印章。

‘move_stamp(page_number, stamp_index, new_x, new_y)’ 方法可以精确地重新定位印章。

  1. 创建一个 PdfContentEditor 对象。
  2. 将 PDF 绑定到编辑器。
  3. 向页面添加多个橡胶印章。
  4. 在执行移动操作之前保存文档。
  5. 根据索引移动特定的印章。
  6. 保存更新后的 PDF。
import aspose.pdf.facades as pdf_facades
import aspose.pydrawing as apd
from io import BytesIO
import sys
from os import path

sys.path.append(path.join(path.dirname(__file__), ".."))

from config import set_license, initialize_data_dir


def move_stamp_by_index(infile, outfile):
    # Create PdfContentEditor object
    content_editor = pdf_facades.PdfContentEditor()
    # Bind document to PdfContentEditor
    content_editor.bind_pdf(infile)

    content_editor.create_rubber_stamp(
        2,
        apd.Rectangle(200, 380, 180, 60),
        "Draft",
        "Draft stamp for ID-based operations",
        apd.Color.orange,
    )

    content_editor.create_rubber_stamp(
        2,
        apd.Rectangle(200, 480, 180, 60),
        "Draft",
        "Draft stamp for ID-based operations",
        apd.Color.orange,
    )
    content_editor.save(outfile)

    # Move first stamp on page 1 by index
    # content_editor.move_stamp(1, 1, 10, 10)
    # Save updated document
    content_editor.save(outfile)