mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Avoid resize operation if image is already the correct size
This commit is contained in:
parent
9cde0aa7d6
commit
255a090e97
|
@ -1514,6 +1514,9 @@ class Image:
|
|||
|
||||
self.load()
|
||||
|
||||
if self.size == size:
|
||||
return self._new(self.im)
|
||||
|
||||
if self.mode in ("1", "P"):
|
||||
resample = NEAREST
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user