Skip to content

Commit 0da2f5d

Browse files
authored
DOC: Add feature support by pypdf (#2738)
1 parent f6cdd7c commit 0da2f5d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/user/pdf-version-support.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ all features of PDF 2.0.
1818

1919
## PDF Feature Support by pypdf
2020

21-
| Feature | PDF-Version | pypdf Support |
22-
| --------------------------------------- | ----------- | -------------- |
23-
| Transparent Graphics | 1.4 | ? |
21+
| Feature | PDF Version | pypdf Support |
22+
| --------------------------------------- |:-----------:|:--------------:|
2423
| CMaps | 1.4 ||
25-
| Object Streams | 1.5 | ? |
26-
| Cross-reference Streams | 1.5 | ? |
27-
| Optional Content Groups (OCGs) - Layers | 1.5 | ? |
28-
| Content Stream Compression | 1.5 | ? |
24+
| Transparent Graphics | 1.4 ||
25+
| Content Stream Compression | 1.5 ||
26+
| Cross-reference Streams | 1.5 ||
27+
| Object Streams | 1.5 ||
28+
| Optional Content Groups (OCGs) | 1.5 ||
2929
| AES Encryption | 1.6 ||
3030

3131
See [History of PDF](https://en.wikipedia.org/wiki/History_of_PDF) for more

tests/test_generic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def test_name_object(caplog):
223223
)
224224
) == "/你好世界"
225225

226-
# to test latin-1 aka stdencoding
226+
# to test PDFDocEncoding (latin-1)
227227
assert (
228228
NameObject.read_from_stream(BytesIO(b"/DocuSign\xae"), None)
229229
) == "/DocuSign®"

0 commit comments

Comments
 (0)