11"""
2- See Portable Document Format Reference Manual, 1993. ISBN 0-201-62628-4.
2+ PDF Specification Archive
3+ https://pdfa.org/resource/pdf-specification-archive/
34
4- See https://ia802202.us.archive.org/8/items/pdfy-0vt8s-egqFwDl7L2/PDF%20Reference%201.0.pdf
5+ Portable Document Format Reference Manual, 1993. ISBN 0-201-62628-4
6+ https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/pdfreference1.0.pdf
57
6- PDF Reference, third edition, Version 1.4, 2001. ISBN 0-201-75839-3.
8+ ISO 32000-1:2008 (PDF 1.7)
9+ https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/PDF32000_2008.pdf
710
8- PDF Reference, sixth edition, Version 1.7, 2006.
9-
10- ISO 32000-2:2020 (PDF 2.0).
11+ ISO 32000-2:2020 (PDF 2.0)
1112"""
1213
1314from enum import IntFlag , auto
@@ -290,13 +291,7 @@ class StreamAttributes:
290291
291292
292293class FilterTypes :
293- """
294- Table 4.3 of the 1.4 Manual.
295-
296- Page 354 of the 1.7 Manual.
297-
298- Table 6 of the 2.0 manual.
299- """
294+ """§7.4 of the 1.7 and 2.0 references."""
300295
301296 ASCII_HEX_DECODE = "/ASCIIHexDecode" # abbreviation: AHx
302297 ASCII_85_DECODE = "/ASCII85Decode" # abbreviation: A85
@@ -309,10 +304,7 @@ class FilterTypes:
309304
310305
311306class FilterTypeAbbreviations :
312- """
313- Table 4.44 of the 1.7 Manual (page 353ff).
314- Table 92 of the 2.0 manual.
315- """
307+ """§8.9.7 of the 1.7 and 2.0 references."""
316308
317309 AHx = "/AHx"
318310 A85 = "/A85"
@@ -353,7 +345,7 @@ class CcittFaxDecodeParameters:
353345
354346
355347class ImageAttributes :
356- """Table 4.39 PDF Reference 1.7 page 340+ """
348+ """§11.6.5 of the 1.7 and 2.0 references. """
357349
358350 TYPE = "/Type" # name, required; must be /XObject
359351 SUBTYPE = "/Subtype" # name, required; must be /Image
@@ -638,10 +630,7 @@ class GraphicsStateParameters:
638630
639631
640632class CatalogDictionary :
641- """
642- Table 3.25 in the 1.7 reference.
643- Table 29 in the 2.0 reference.
644- """
633+ """§7.7.2 of the 1.7 and 2.0 references."""
645634
646635 TYPE = "/Type" # name, required; must be /Catalog
647636 VERSION = "/Version" # name
0 commit comments