mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 18:06:18 +03:00
Merge pull request #5579 from radarhere/simplified
This commit is contained in:
commit
b057f5f40f
|
@ -1832,18 +1832,16 @@ class Image:
|
|||
if source_palette is None:
|
||||
if self.mode == "P":
|
||||
self.load()
|
||||
real_source_palette = self.im.getpalette("RGB")[:768]
|
||||
source_palette = self.im.getpalette("RGB")[:768]
|
||||
else: # L-mode
|
||||
real_source_palette = bytearray(i // 3 for i in range(768))
|
||||
else:
|
||||
real_source_palette = source_palette
|
||||
source_palette = bytearray(i // 3 for i in range(768))
|
||||
|
||||
palette_bytes = b""
|
||||
new_positions = [0] * 256
|
||||
|
||||
# pick only the used colors from the palette
|
||||
for i, oldPosition in enumerate(dest_map):
|
||||
palette_bytes += real_source_palette[oldPosition * 3 : oldPosition * 3 + 3]
|
||||
palette_bytes += source_palette[oldPosition * 3 : oldPosition * 3 + 3]
|
||||
new_positions[oldPosition] = i
|
||||
|
||||
# replace the palette color id of all pixel with the new id
|
||||
|
|
Loading…
Reference in New Issue
Block a user