File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 27
27
28
28
29
29
"""
30
- Implementation of stream filters for PDF.
30
+ Implementation of stream filters; §7.4 Filters of the PDF 2.0 specification .
31
31
32
- See TABLE H.1 Abbreviations for standard filter names
32
+ §8.9.7 Inline images of the PDF 2.0 specification has abbreviations that can be
33
+ used for the names of filters in an inline image object.
33
34
"""
34
35
__author__ = "Mathieu Fenniak"
35
36
__author_email__ = "[email protected] "
@@ -525,13 +526,12 @@ def decode(
525
526
526
527
Args:
527
528
data: text to decode.
528
- decode_parms: a dictionary of parameter values .
529
+ decode_parms: this filter does not use parameters .
529
530
530
531
Returns:
531
532
decoded data.
532
533
533
534
"""
534
- # decode_parms: this filter does not use parameters
535
535
return data
536
536
537
537
You can’t perform that action at this time.
0 commit comments