mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-25 09:26:16 +03:00
Removed unnecessary palette copy
This commit is contained in:
parent
d88200e0d0
commit
c0aaf54816
|
@ -291,9 +291,8 @@ def pad(image, size, method=Image.Resampling.BICUBIC, color=None, centering=(0.5
|
||||||
out = resized
|
out = resized
|
||||||
else:
|
else:
|
||||||
out = Image.new(image.mode, size, color)
|
out = Image.new(image.mode, size, color)
|
||||||
palette = image.palette.copy()
|
if resized.palette:
|
||||||
if palette:
|
out.putpalette(resized.palette)
|
||||||
out.putpalette(palette)
|
|
||||||
if resized.width != size[0]:
|
if resized.width != size[0]:
|
||||||
x = int((size[0] - resized.width) * max(0, min(centering[0], 1)))
|
x = int((size[0] - resized.width) * max(0, min(centering[0], 1)))
|
||||||
out.paste(resized, (x, 0))
|
out.paste(resized, (x, 0))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user