What is AcroForm?
AcroForm is the original PDF form technology built into Adobe's PDF specification. An AcroForm PDF embeds fillable field objects — names, types, positions, default values — directly inside the PDF structure, so any modern PDF reader can detect and fill them programmatically.
Why AcroForm matters
If a PDF was created with AcroForm, every fillable field has a name, a type (text, checkbox, radio, signature), a position on the page, and optionally a default value. That structure is machine-readable. A tool like FillWizard can read the field names, match them against an identity profile, and fill the form in seconds — without OCR, without guessing where the fields are.
How to tell if a PDF is an AcroForm
Open the PDF in any modern reader. If you can click into a text field and start typing without an overlay, it's almost certainly an AcroForm. If clicks do nothing, it's likely a flat (rendered) PDF where the 'fields' are just pixels in an image, not data structures.
AcroForm vs XFA vs flat PDFs
AcroForm is the most portable PDF form technology — it opens in browsers, mobile readers, Acrobat, Preview, everywhere. XFA is an older Adobe-specific format that wraps XML forms inside PDFs and only renders properly in Adobe Reader on Windows. Flat PDFs are rendered images with no fillable structure at all; you need OCR or vision models to even detect where the fields are.
How FillWizard handles AcroForms
When you drop an AcroForm PDF into FillWizard, we read the embedded field objects directly. Field names are mapped to your identity profile (with multilingual label awareness for Arabic, French, Spanish, and German), values are written into the existing field structure, and the form is exported as a flattened PDF that opens cleanly in any reader.
Related terms
- XFA (XML Forms Architecture)XFA is an Adobe-specific PDF form technology that wraps XML-based forms inside PDF containers. It's largely deprecated. Most modern PDF viewers — browsers, Preview, mobile readers — cannot render XFA forms, which is why some old government PDFs only open in Adobe Reader on Windows.
- PDF form flatteningFlattening a PDF form merges the filled-in field values into the page content itself. After flattening, the fields are no longer editable — the values become part of the document permanently, and the file opens identically in every PDF reader.