convert all unsuported image modes

This commit is contained in:
j 2015-11-19 16:13:13 +01:00
parent 13e360ac97
commit a0b66637d1
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ def resize_image(data, width=None, size=None):
else:
data = StringIO(data)
source = Image.open(data)
if source.mode == 'P':
if source.mode not in ('1', 'CMYK', 'L', 'RGB', 'RGBA', 'RGBX', 'YCbCr'):
source = source.convert('RGB')
source_width = source.size[0]
source_height = source.size[1]