Data represents forms data format (FDF) file data.
type Data struct {
// contains filtered or unexported fields
}
func Load(r io.ReadSeeker) (*Data, error)
Load loads FDF form data from `r`.
func LoadFromPath(fdfPath string) (*Data, error)
LoadFromPath loads FDF form data from file path `fdfPath`.
func (fdf *Data) FieldDictionaries() (map[string]*core.PdfObjectDictionary, error)
FieldDictionaries returns a map of field names to field dictionaries.
func (fdf *Data) FieldValues() (map[string]core.PdfObject, error)
FieldValues implements interface model.FieldValueProvider. Returns a map of field names to values (PdfObjects).