We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6c6a7d commit f809ed8Copy full SHA for f809ed8
2 files changed
.gitignore
@@ -2,3 +2,4 @@
2
Cargo.lock
3
_things
4
.DS_Store
5
+.idea/
src/structure.rs
@@ -136,6 +136,12 @@ impl<'a> Catalog<'a> {
136
pub fn output_intents(&mut self) -> TypedArray<'_, OutputIntent> {
137
self.insert(Name(b"OutputIntents")).array().typed()
138
}
139
+
140
+ /// Start writing the `/AF` array to specify the associated files of the
141
+ /// document. PDF 2.0+.
142
+ pub fn associated_files(&mut self) -> TypedArray<'_, FileSpec> {
143
+ self.insert(Name(b"AF")).array().typed()
144
+ }
145
146
147
deref!('a, Catalog<'a> => Dict<'a>, dict);
0 commit comments