多くのフォームフィールドが含まれているPDFドキュメントがあります。フォームフィールドの名前を確認する必要があります。 Adobe Readerでこれを行うことはできますか?おそらくサードパーティのツール..?
これを実行するためのユーザーフレンドリーなアプリケーションが見つかる可能性がありますが、これが小さなVBScriptで実現する方法です...
ABCSuperからABCpdfをダウンロードしてインストールします。利用可能です こちら...
次のスクリプトをテキストファイルにコピーし、「。vbs」ファイル拡張子を付けて保存します。
PDFファイルのコピーをスクリプトと同じフォルダーに配置し、「myForm.pdf」という名前を付けます。
スクリプトファイルをダブルクリックして実行します。
Set theDoc = CreateObject("ABCpdf8.Doc")
theDoc.Read "myForm.pdf"
theDoc.AddFont "Helvetica-Bold"
theDoc.FontSize=16
theDoc.Rect.Pin=1
Dim theIDs, theList
theIDs = theDoc.GetInfo(theDoc.Root, "Field IDs")
theList = Split(theIDs, ",")
For Each id In theList
theDoc.Page = theDoc.GetInfo(id, "Page")
theDoc.Rect.String = theDoc.GetInfo(id, "Rect")
theDoc.Color.String = "240 240 255"
theDoc.FillRect()
theDoc.Rect.Height = 16
theDoc.Color.String = "220 0 0"
theDoc.AddText(theDoc.GetInfo(id, "Name"))
theDoc.Delete(id)
Next
theDoc.Save "output.pdf"
theDoc.Clear
MsgBox "Finished"
スクリプトが終了すると、別のPDF 'output.pdf'という名前のドキュメントが同じフォルダーに表示され、すべてのフィールド名がフィールドの上にオーバーレイされます。
私はこの質問が少し古いことを感謝しますが、他の誰かがそれに遭遇した場合に備えて PDF Toolkit は、次のようなコマンドで非常に簡単にこれを行うことができます(PDFフォームフィールドが必要な場所は、docsOfInterest.pdfです。
pdftk docOfInterest.pdf dump_data_fields
私の知る限り、Acrobat Readerでそれを行うことはできません。あなたは彼らのPDFライタープログラム(現在はAcrobat XI)を使用してそれを行うことができますが、それはかなり高価です。
ほんの数個のドキュメントに対して同じことをしなければなりませんでした。 deskPDF Studio X の試用版をダウンロードしました。メニューから[フォーム]> [フォームレイアウトの変更]に移動すると、フィールドの名前を確認できます。
文書を保存すると、無料の試用版を使用すると、文書に透かしがスタンプされることに注意してください。
Aspose.comには、PDFのフォームフィールド名を識別する方法を説明する技術的な article があります。この記事によると、ページでJavaコードを使用してこれを実現できます。
//First a input pdf file should be assigne
Form form = new Form("FilledForm.pdf");
//get all field names
String[] allfields = form.getFieldsNames();
// Create an array which will hold the location coordinates of Form fields
Rectangle[] box = new Rectangle[allfields.Length];
for (int i = 0; i < allfields.Length; i++)
{
// Get the appearance attributes of each field, consequtively
FormFieldFacade facade = form.getFieldFacade(allfields[i]);
//Box in FormFieldFacade class holds field's location.
box[i] = facade.getBox();
}
form.save();
// Now we need to add a textfield just upon the original one
FormEditor editor = new FormEditor("FilledForm.pdf", ”form_updated.pdf");
for (int i = 0; i < allfields.Length; i++)
{
// add text field beneath every existing form field
editor.addField(FormEditor.FLDTYP_TXT, "TextField" + i, allfields[i], 1, box[i].getX, box[i].getY(), box[i].getX() + 50, box[i].getY() + 10);
}
//Close the document
editor.save();