mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-11 17:56:18 +03:00
Merge pull request #15 from sfllaw/master
Backport fix to split() after open() (regression in 1.1.7).
This commit is contained in:
commit
73b4a6b0b0
|
@ -1494,11 +1494,11 @@ class Image:
|
|||
def split(self):
|
||||
"Split image into bands"
|
||||
|
||||
self.load()
|
||||
if self.im.bands == 1:
|
||||
ims = [self.copy()]
|
||||
else:
|
||||
ims = []
|
||||
self.load()
|
||||
for i in range(self.im.bands):
|
||||
ims.append(self._new(self.im.getband(i)))
|
||||
return tuple(ims)
|
||||
|
|
Loading…
Reference in New Issue
Block a user