Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

readFromStream(stream, pdf) receives NONE and pdf.strict fails #563

Closed
emelenas opened this issue Jun 24, 2020 · 2 comments
Closed

readFromStream(stream, pdf) receives NONE and pdf.strict fails #563

emelenas opened this issue Jun 24, 2020 · 2 comments
Labels
is-bug From a users perspective, this is a bug - a violation of the expected behavior with a compliant PDF

Comments

@emelenas
Copy link

emelenas commented Jun 24, 2020

As stated in the title, pdf.strict in readFromStream (at line 582 in generic.py) raises an AttributeError because the parameter pdf as received is None.

Going back, this comes from ContentStream.__parseContentStream at file pdf.py line 2706 though the call operands.append(readObject(stream, None)). readObject in turn calls DictionaryObject.readFromStream at line 66 of generic.py

Thus, it is an explicit call with None as an argument that causes the exception. The starting call with None is done at an else clause after some checks on the stream, so maybe there is a missing check.

Anyhow if None is to be passed as argument pdf, I believe a check should be in order down the line to avoid exceptions.

I changed the call to

operands.append(readObject(stream, self.pdf))

and apparently no harm is done (aside from avoiding the exception).

@MartinThoma
Copy link
Member

Can you share a minimal complete example (including the code you've written + the PDF file you've used)?

@MartinThoma MartinThoma added the is-bug From a users perspective, this is a bug - a violation of the expected behavior with a compliant PDF label Apr 7, 2022
@MartinThoma
Copy link
Member

It seems like this part no longer exists. Maybe it was solved with #924 .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
is-bug From a users perspective, this is a bug - a violation of the expected behavior with a compliant PDF
Projects
None yet
Development

No branches or pull requests

2 participants