forked from py-pdf/pypdf
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathfilters.py
774 lines (639 loc) · 25.8 KB
/
filters.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
# -*- coding: UTF-8 -*-
# vim: sw=4:expandtab:foldmethod=marker
#
# Copyright (c) 2006, Mathieu Fenniak
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# * The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
"""
Implementation of stream filters for PDF.
"""
import base64
import struct
from sys import version_info
from pypdf import generic
from pypdf.generic import *
from pypdf.utils import PdfReadError, PdfStreamError, paethPredictor, pypdfOrd
try:
import zlib
def decompress(data):
return zlib.decompress(data)
def compress(data):
return zlib.compress(data)
except ImportError:
# Unable to import zlib. Attempt to use the System.IO.Compression
# library from the .NET framework. (IronPython only.)
import System
from System import IO, Array
def _string_to_bytearr(buf):
retval = Array.CreateInstance(System.Byte, len(buf))
# pylint: disable=consider-using-enumerate
for i in range(len(buf)):
retval[i] = ord(buf[i])
return retval
def _bytearr_to_string(these_bytes):
retval = ""
for i in range(these_bytes.Length):
retval += chr(these_bytes[i])
return retval
def _read_bytes(stream):
ms = IO.MemoryStream()
buf = Array.CreateInstance(System.Byte, 2048)
while True:
these_bytes = stream.Read(buf, 0, buf.Length)
if these_bytes == 0:
break
else:
ms.Write(buf, 0, these_bytes)
retval = ms.ToArray()
ms.Close()
return retval
def decompress(data):
these_bytes = _string_to_bytearr(data)
ms = IO.MemoryStream()
ms.Write(bytes, 0, these_bytes.Length)
ms.Position = 0 # fseek 0
gz = IO.Compression.DeflateStream(ms, IO.Compression.CompressionMode.Decompress)
these_bytes = _read_bytes(gz)
retval = _bytearr_to_string(these_bytes)
gz.Close()
return retval
def compress(data):
these_bytes = _string_to_bytearr(data)
ms = IO.MemoryStream()
gz = IO.Compression.DeflateStream(
ms, IO.Compression.CompressionMode.Compress, True
)
gz.Write(these_bytes, 0, these_bytes.Length)
gz.Close()
ms.Position = 0 # fseek 0
these_bytes = ms.ToArray()
retval = _bytearr_to_string(these_bytes)
ms.Close()
return retval
__author__ = "Mathieu Fenniak"
__author_email__ = "[email protected]"
class FlateCodec(object):
@staticmethod
def encode(data, decodeParms=None):
return compress(data)
# pylint: disable=too-many-locals, too-many-branches
@staticmethod
def decode(data, decodeParms=None):
"""
:param data: flate-encoded data.
:param decodeParms: a dictionary of parameter values.
:return: the flate-decoded data.
:rtype: bytes
"""
data = decompress(data)
predictor = 1
if decodeParms:
try:
predictor = decodeParms.get("/Predictor", 1)
except AttributeError:
pass # Usually an array with a null object was read
# predictor 1 == no predictor
if predictor != 1:
# The /Columns param. has 1 as the default value; see ISO 32000,
# §7.4.4.3 LZWDecode and FlateDecode Parameters, Table 8
columns = decodeParms.get("/Columns", 1)
# PNG prediction:
if 10 <= predictor <= 15:
output = BytesIO()
# PNG prediction can vary from row to row
row_length = columns + 1
assert len(data) % row_length == 0
prev_rowdata = (0,) * row_length
for row in range(len(data) // row_length):
rowdata = [
pypdfOrd(x)
for x in data[(row * row_length) : ((row + 1) * row_length)]
]
filterByte = rowdata[0]
if filterByte == 0:
pass
elif filterByte == 1:
for i in range(2, row_length):
rowdata[i] = (rowdata[i] + rowdata[i - 1]) % 256
elif filterByte == 2:
for i in range(1, row_length):
rowdata[i] = (rowdata[i] + prev_rowdata[i]) % 256
elif filterByte == 3:
for i in range(1, row_length):
left = rowdata[i - 1] if i > 1 else 0
floor = math.floor(left + prev_rowdata[i]) / 2
rowdata[i] = (rowdata[i] + int(floor)) % 256
elif filterByte == 4:
for i in range(1, row_length):
left = rowdata[i - 1] if i > 1 else 0
up = prev_rowdata[i]
up_left = prev_rowdata[i - 1] if i > 1 else 0
paeth = paethPredictor(left, up, up_left)
rowdata[i] = (rowdata[i] + paeth) % 256
else:
# Unsupported PNG filter
raise PdfReadError("Unsupported PNG filter %r" % filterByte)
prev_rowdata = rowdata
for d in rowdata:
if version_info < (3, 0):
output.write(chr(d))
else:
output.write(bytes([d]))
data = output.getvalue()
else:
# unsupported predictor
raise PdfReadError("Unsupported flatedecode predictor %r" % predictor)
return data
class ASCIIHexCodec(object):
"""
The ASCIIHexCodec filter decodes data that has been encoded in ASCII
hexadecimal form into a base-7 ASCII format.
"""
@staticmethod
def encode(data, decodeParms=None):
raise NotImplementedError()
@staticmethod
def decode(data, decodeParms=None):
"""
:param data: a str sequence of hexadecimal-encoded values to be
converted into a base-7 ASCII string
:return: a string conversion in base-7 ASCII, where each of its values
v is such that 0 <= ord(v) <= 127.
"""
retval = ""
hex_pair = ""
eod_found = False
for c in data:
if c == ">":
# If the filter encounters the EOD marker after reading an odd
# number of hexadecimal digits, it shall behave as if a 0
# (zero) followed the last digit - from ISO 32000 specification
if len(hex_pair) == 1:
hex_pair += "0"
retval += chr(int(hex_pair, base=16))
hex_pair = ""
eod_found = True
break
elif c.isspace():
continue
hex_pair += c
if len(hex_pair) == 2:
retval += chr(int(hex_pair, base=16))
hex_pair = ""
if not eod_found:
raise PdfStreamError("Ending character '>' not found in stream")
assert hex_pair == ""
return retval
# pylint: disable=too-few-public-methods
class LZWCodec(object):
"""
For a reference of the LZW algorithm consult ISO 32000, section 7.4.4 or
Section 13 of "TIFF 6.0 Specification" for a more detailed discussion.
"""
class Encoder(object):
"""
``LZWCodec.Encoder`` is primarily employed for testing purposes and
its implementation doesn't (yet) cover all the little facets present in
the ISO standard.
"""
MAX_ENTRIES = 2 ** 12
def __init__(self, data):
"""
:param data: a ``str`` or ``bytes`` string to encode with LZW.
"""
if isinstance(data, str) and version_info > (3, 0):
self.data = data.encode("UTF-8")
elif isinstance(data, bytes): # bytes is str in Python 2
self.data = data
else:
raise TypeError(
"data must be of type {str, bytes}, found %s" % type(data)
)
self.bitspercode = None
# self.table maps buffer values to their progressive indices
self.table = None
# self.result stores the contiguous stream of bits in form of ints
self.output = None
# The location of the next bit we are going to write to
self.bitpos = 0
self._resetTable()
def encode(self):
"""
Encodes the data passed in to ``__init__()`` according to the LZW
specification.
"""
self.output = list()
buffer = bytes()
self._writeCode(256)
for b in self.data:
# If we iterate on a bytes instance under Python 3, we get int
# rather than bytes values, which we need to convert
if version_info > (3, 0):
b = bytes([b])
if buffer + b in self.table:
buffer += b
else:
# Write the code of buffer to the codetext
self._writeCode(self.table[buffer])
self._addCodeToTable(buffer + b)
buffer = b
self._writeCode(self.table[buffer])
self._writeCode(257)
# This results in an automatic assertion of the values of
# self.result, since for each v one of them, 0 <= v <= 255
return bytearray(self.output).decode("LATIN1")
def _resetTable(self):
"""
Brings the pattern-to-code-value table to default values.
"""
self.bitspercode = 9
if version_info < (3, 0):
self.table = {chr(b): b for b in range(256)}
else:
self.table = {bytes([b]): b for b in range(256)}
# self.table is actually a bytes-to-integers mapping, but we are
# doing a little inoffensive misuse here!
self.table[256] = len(self.table)
self.table[257] = len(self.table)
def _writeCode(self, code):
"""
Tricky implementation method that serves in the conversion from
usually higher-than-eight-bit values (input in ``code`` as
integers) to a stream of bits. The serialization is performed by
writing into a list of integer values.
:param code: an integer value whose bit stream will be serialized
inside ``self.result``.
"""
bytesAlloc = int(
math.ceil(float(self.bitpos + self.bitspercode) / 8)
) - len(self.output)
self.output.extend([0] * bytesAlloc)
bitsWritten = 0
relbitpos = self.bitpos % 8
bytepos = int(math.floor(self.bitpos / 8))
while (self.bitspercode - bitsWritten) > 0:
self.output[bytepos] |= (
((code << bitsWritten) >> (self.bitspercode - 8)) & 0xFF
) >> relbitpos
bitsWritten += min(8 - relbitpos, self.bitspercode - bitsWritten)
relbitpos = (self.bitpos + bitsWritten) % 8
bytepos = int(math.floor((self.bitpos + bitsWritten) / 8))
self.bitpos += self.bitspercode
def _addCodeToTable(self, value):
if len(self.table) >= self.MAX_ENTRIES:
self._writeCode(256)
self._resetTable()
elif len(self.table) >= 2 ** self.bitspercode:
self.bitspercode += 1
self.table[value] = len(self.table)
# pylint: disable=too-many-instance-attributes
class Decoder(object):
MAX_ENTRIES = 2 ** 12
CLEARDICT = 256
STOP = 257
def __init__(self, data):
"""
Decodes a stream of data encoded according to LZW.
:param data: a string or byte string.
"""
self.data = data
self.bytepos = 0
self.bitpos = 0
self.dict = [b""] * self.MAX_ENTRIES
self.dictindex = None
self.bitspercode = None
for i in range(256):
if version_info < (3, 0):
self.dict[i] = chr(i)
else:
self.dict[i] = bytes([i])
self._resetDict()
def decode(self):
"""
TIFF 6.0 specification explains in sufficient details the steps to
implement the LZW encode() and decode() algorithms.
:rtype: bytes
"""
# TO-DO Make return value type bytes, as instructed by ISO 32000
cW = self.CLEARDICT
output = b""
while True:
pW = cW
cW = self._readCode()
if cW == -1:
raise PdfReadError("Missed the stop code in during LZW decoding")
if cW == self.STOP:
break
elif cW == self.CLEARDICT:
self._resetDict()
elif pW == self.CLEARDICT:
output += self.dict[cW]
else:
if cW < self.dictindex:
output += self.dict[cW]
if version_info > (3, 0):
p = self.dict[pW] + bytes([self.dict[cW][0]])
else:
p = self.dict[pW] + self.dict[cW][0]
self._addCodeToTable(p)
else:
if version_info > (3, 0):
p = self.dict[pW] + bytes([self.dict[pW][0]])
else:
p = self.dict[pW] + self.dict[pW][0]
output += p
self._addCodeToTable(p)
return output
def _resetDict(self):
self.dictindex = 258
self.bitspercode = 9
def _readCode(self):
toread = self.bitspercode
value = 0
while toread > 0:
if self.bytepos >= len(self.data):
return -1
nextbits = pypdfOrd(self.data[self.bytepos])
bitsfromhere = 8 - self.bitpos
if bitsfromhere > toread:
bitsfromhere = toread
value |= (
(nextbits >> (8 - self.bitpos - bitsfromhere))
& (0xFF >> (8 - bitsfromhere))
) << (toread - bitsfromhere)
toread -= bitsfromhere
self.bitpos += bitsfromhere
if self.bitpos >= 8:
self.bitpos = 0
self.bytepos = self.bytepos + 1
return value
def _addCodeToTable(self, data):
self.dict[self.dictindex] = data
self.dictindex += 1
if self.dictindex >= (2 ** self.bitspercode) and self.bitspercode < 12:
self.bitspercode += 1
@staticmethod
def encode(data, decodeParms=None):
"""
:param data: ``str`` or ``bytes`` input to encode.
:param decodeParms:
:return: encoded LZW text.
"""
return LZWCodec.Encoder(data).encode()
@staticmethod
def decode(data, decodeParms=None):
"""
:param data: ``bytes`` or ``str`` text to decode.
:param decodeParms: a dictionary of parameter values.
:return: decoded data.
:rtype: bytes
"""
return LZWCodec.Decoder(data).decode()
# pylint: disable=too-few-public-methods
class ASCII85Codec(object):
"""
Decodes string ASCII85-encoded data into a byte format.
"""
# pylint: disable=too-many-branches, too-many-statements, too-many-locals
@staticmethod
def encode(data, decodeParms=None):
"""
Encodes chunks of 4-byte sequences of textual or bytes data according
to the base-85 ASCII encoding algorithm.
:param data: a str or byte sequence of values.
:return: ASCII85-encoded data in bytes format (equal to str in Python
2).
"""
if sys.version_info[0] < 3:
result = str()
filler = "\x00" if type(data) is str else b"\x00"
if type(data) not in (str, bytes):
raise TypeError(
"Expected str or bytes type for data, got %s instead" % type(data)
)
for group in range(int(math.ceil(len(data) / 4.0))):
decimalRepr = 0
ascii85 = str()
groupWidth = min(4, len(data) - 4 * group)
if groupWidth < 4:
data = data + (4 - groupWidth) * filler
for byte in range(4):
decimalRepr += pypdfOrd(data[4 * group + byte]) << 8 * (
4 - byte - 1
)
# If all bytes are 0, we turn them into a single 'z' character
if decimalRepr == 0 and groupWidth == 4:
ascii85 = "z"
else:
for i in range(5):
ascii85 = chr(decimalRepr % 85 + 33) + ascii85
decimalRepr = int(decimalRepr / 85.0)
# In case of a partial group of four bytes, the standard says:
# «Finally, it shall write only the first n + 1 characters of the
# resulting group of 5.» - ISO 32000 (2008), sec. 7.4.3
result += ascii85[: min(5, groupWidth + 1)]
return ("<~" + result + "~>").encode("LATIN1")
else:
return base64.a85encode(data, adobe=True)
@staticmethod
def decode(data, decodeParms=None):
"""
Decodes binary (bytes or str) data previously encoded in ASCII85.
:param data: a str or bytes sequence of ASCII85-encoded characters.
:return: bytes for Python 3, str for Python 2.
"""
if sys.version_info[0] < 3:
group_index = b = 0
out = bytearray()
if isinstance(data, unicode):
try:
data = data.encode("ascii")
except UnicodeEncodeError:
raise ValueError(
"unicode argument should contain only ASCII characters"
)
if isinstance(data, bytes):
data = data.decode("LATIN1")
elif not isinstance(data, str):
raise TypeError(
"data is of %s type, expected str or bytes"
% data.__class__.__name__
)
# Strip leading '<~' characters, if present.
if data.startswith("<~"):
data = data[2:]
# Ensure that the data ends with '~>' characters.
if not data.endswith("~>"):
raise ValueError("Ascii85 encoded byte sequences must end with '~>'")
for index, c in enumerate(data):
# Ignore whitespace characters.
if not c.strip(" \n\r\t\v"):
continue
byte = ord(c)
# 33 == ord('!') and 117 == ord('u')
if 33 <= byte <= 117:
group_index += 1
b = b * 85 + (byte - 33)
if group_index == 5:
out += struct.pack(b">L", b)
group_index = b = 0
# 122 == ord('z')
elif byte == 122:
if group_index:
raise ValueError("z inside Ascii85 5-tuple")
out.extend(b"\x00\x00\x00\x00")
# 126 == ord('~') and 62 == ord('>')
elif byte == 126 and data[index + 1] == ">":
if group_index:
for _ in range(5 - group_index):
b = b * 85 + 84
out += struct.pack(b">L", b)[: group_index - 1]
break
else:
raise ValueError("Value '%c' not recognized" % c)
return bytes(out)
else:
return base64.a85decode(data, adobe=True)
# pylint: disable=too-few-public-methods
class DCTCodec(object):
@staticmethod
def encode(data, decodeParms=None):
raise NotImplementedError()
@staticmethod
def decode(data, decodeParms=None):
"""
TO-DO Implement this filter.
"""
return data
class JPXCodec(object): # pylint: disable=too-few-public-methods
@staticmethod
def encode(data, decodeParms=None):
raise NotImplementedError()
@staticmethod
def decode(data, decodeParms=None):
"""
TO-DO Implement this filter.
"""
return data
class CCITTFaxCodec(object): # pylint: disable=too-few-public-methods
@staticmethod
def encode(data, decodeParms=None):
raise NotImplementedError()
@staticmethod
def decode(data, decodeParms=None, height=0):
if decodeParms:
if decodeParms.get("/K", 1) == -1:
CCITTgroup = 4
else:
CCITTgroup = 3
width = decodeParms["/Columns"]
imgSize = len(data)
tiffHeaderStruct = "<" + "2s" + "h" + "l" + "h" + "hhll" * 8 + "h"
tiffHeader = struct.pack(
tiffHeaderStruct,
b"II", # Byte order indication: Little endian
42, # Version number (always 42)
8, # Offset to first IFD
8, # Number of tags in IFD
256,
4,
1,
width, # ImageWidth, LONG, 1, width
257,
4,
1,
height, # ImageLength, LONG, 1, length
258,
3,
1,
1, # BitsPerSample, SHORT, 1, 1
# Compression, SHORT, 1, 4 = CCITT Group 4 fax encoding
259,
3,
1,
CCITTgroup,
262,
3,
1,
0, # Thresholding, SHORT, 1, 0 = WhiteIsZero
# StripOffsets, LONG, 1, length of header
273,
4,
1,
struct.calcsize(tiffHeaderStruct),
278,
4,
1,
height, # RowsPerStrip, LONG, 1, length
279,
4,
1,
imgSize, # StripByteCounts, LONG, 1, size of image
0, # last IFD
)
# TO-DO Finish implementing (the code above only adds header infos.)
return tiffHeader + data
# pylint: disable=too-many-branches
def decodeStreamData(stream):
"""
:param stream: ``EncodedStreamObject`` instance.
:return: decoded data from the encoded stream.
"""
filters = stream.get("/Filter", ())
if filters and not isinstance(filters[0], generic.NameObject):
# we have a single filter instance
filters = (filters,)
data = stream._data
# If there is not data to decode we should not try to decode the data.
if data:
for filterType in filters:
if filterType in ["/FlateDecode", "/Fl"]:
data = FlateCodec.decode(data, stream.get("/DecodeParms"))
elif filterType in ["/ASCIIHexDecode", "/AHx"]:
data = ASCIIHexCodec.decode(data)
elif filterType in ["/LZWDecode", "/LZW"]:
data = LZWCodec.decode(data, stream.get("/DecodeParms"))
elif filterType in ["/ASCII85Decode", "/A85"]:
data = ASCII85Codec.decode(data, stream.get("/DecodeParms"))
elif filterType == "/DCTDecode":
data = DCTCodec.decode(data)
elif filterType == "/JPXDecode":
data = JPXCodec.decode(data)
elif filterType == "/CCITTFaxDecode":
height = stream.get("/Height", ())
data = CCITTFaxCodec.decode(data, stream.get("/DecodeParms"), height)
elif filterType == "/Crypt":
decodeParams = stream.get("/DecodeParams", {})
if "/Name" not in decodeParams and "/Type" not in decodeParams:
pass
else:
raise NotImplementedError(
"/Crypt filter with /Name or /Type not supported yet"
)
else:
# Unsupported filter
raise NotImplementedError("unsupported filter %s" % filterType)
return data