AcroFormを埋める - Pythonを使用してPDFフォームを埋める
Contents
[
Hide
]
PDF ドキュメントのフォームフィールドに入力する
フォームフィールドに入力するには、Document オブジェクトの Form コレクションからフィールドを取得します。次に、フィールドの value プロパティを使用してフィールド値を設定します。
この例では、TextBoxField を選択し、Value プロパティを使用してその値を設定します。
import aspose.pdf as ap
# ドキュメントを開く
pdfDocument = ap.Document(input_file)
for formField in pdfDocument.form.fields:
if formField.partial_name == "Field 1":
# フィールド値を変更
formField.value = "777"
# 更新されたドキュメントを保存
pdfDocument.save(output_pdf)