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

Packing tests #2694

Merged
merged 12 commits into from
Aug 28, 2017
1 change: 1 addition & 0 deletions PIL/PyAccess.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ def set_pixel(self, x, y, color):
pixel.r = min(color[0], 255)
pixel.g = min(color[1], 255)
pixel.b = min(color[2], 255)
pixel.a = 255


class _PyAccess32_4(PyAccess):
Expand Down
Loading