FDF
Description
The trailer of an FDF file enables a reader to find significant objects quickly within the body of the file. The only required key is Root, whose value is an indirect reference to the fileโs catalogue dictionary (see Table 242). The trailer may optionally contain additional entries for objects that are referenced from within the catalogue.
Methods
This class inherits from PDF and has most its methods available, including: `new`, `open`, `save-as`, `update`, `Str` and `Blob`.
Note that `encrypt` is not applicable to FDF files.
use FDF;
use FDF::Field;
my FDF $fdf .= open("MyDoc.pdf");
my FDF::Field @fields = $fdf.fields;
my FDF::Field %fields = $fdf.fields-hash;