mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
semicolons
This commit is contained in:
parent
4b3bdcd9df
commit
eab851c61b
|
@ -1267,10 +1267,10 @@ class TiffImageFile(ImageFile.ImageFile):
|
|||
# byte order.
|
||||
if rawmode == 'I;16':
|
||||
rawmode = 'I;16N'
|
||||
if '16B' in rawmode:
|
||||
rawmode = rawmode.replace('16B', '16N')
|
||||
if '16L' in rawmode:
|
||||
rawmode = rawmode.replace('16L', '16N')
|
||||
if ';16B' in rawmode:
|
||||
rawmode = rawmode.replace(';16B', ';16N')
|
||||
if ';16L' in rawmode:
|
||||
rawmode = rawmode.replace(';16L', ';16N')
|
||||
|
||||
|
||||
# Offset in the tile tuple is 0, we go from 0,0 to
|
||||
|
|
Loading…
Reference in New Issue
Block a user