Closed davidplowman closed 1 year ago
You can no longer do:
img.mode = 'RGBX'
but the alternative:
img = img.convert(mode='RGBX')
seems to work on older PIL versions, so we'll go with that.
You can no longer do:
img.mode = 'RGBX'
but the alternative:
img = img.convert(mode='RGBX')
seems to work on older PIL versions, so we'll go with that.