Skip to content

Commit

Permalink
Updated error message
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Oct 10, 2022
1 parent 982d7c4 commit 0b2cef5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
11 changes: 6 additions & 5 deletions Tests/test_imagepalette.py
Expand Up @@ -50,11 +50,12 @@ def test_getcolor():
palette.getcolor("unknown")


def test_getcolor_raises_on_incompatible_color():
palette = ImagePalette.ImagePalette(mode="RGB")
# Opaque RGBA colors should work
palette.getcolor((0, 0, 0, 255))
assert palette.getcolor((0, 0, 0)) == palette.getcolor((0, 0, 0, 255))
def test_getcolor_rgba_color_rgb_palette():
palette = ImagePalette.ImagePalette("RGB")

# Opaque RGBA colors are converted
assert palette.getcolor((0, 0, 0, 255)) == palette.getcolor((0, 0, 0))

with pytest.raises(ValueError):
palette.getcolor((0, 0, 0, 128))

Expand Down
12 changes: 6 additions & 6 deletions src/PIL/ImagePalette.py
Expand Up @@ -114,13 +114,13 @@ def getcolor(self, color, image=None):
if self.rawmode:
raise ValueError("palette contains raw palette data")
if isinstance(color, tuple):
if self.mode == "RGB" and len(color) == 4:
if color[3] == 255:
if self.mode == "RGB":
if len(color) == 4:
if color[3] != 255:
raise ValueError(
"cannot add non-opaque RGBA color to RGB palette"
)
color = color[:3]
else:
raise ValueError(
"RGB ImagePalette can't handle non-opaque RGBA colors"
)
elif self.mode == "RGBA":
if len(color) == 3:
color += (255,)
Expand Down

0 comments on commit 0b2cef5

Please sign in to comment.