We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In pdfinterp.py the color is put into self.graphicstate.color but I think it should be self.graphicstate.ncolor
For example:
# setrgb-non-stroking def do_rg(self, r, g, b): self.graphicstate.color = (r, g, b) #self.do_cs(LITERAL_DEVICE_RGB) return
Should be
# setrgb-non-stroking def do_rg(self, r, g, b): self.graphicstate.ncolor = (r, g, b) #self.do_cs(LITERAL_DEVICE_RGB) return
The text was updated successfully, but these errors were encountered:
This was fixed with PR #129.
See 2231f08#diff-2275db414f4c92f9920df88b9b22446d
Sorry, something went wrong.
Fixed in #287 and #298.
No branches or pull requests
In pdfinterp.py the color is put into self.graphicstate.color but I think it should be self.graphicstate.ncolor
For example:
Should be
The text was updated successfully, but these errors were encountered: