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