You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A bug in PIL causes images created using the fromarray() function to be
created as 'L' mode, even if the array data uses int32.
This can be fixed by changing the Image.py file. Under the fromarray()
function change the following line:
typestr = typestr[:2]
to:
typestr = typestr[1:]
Hopefully this will be fixed in future versions of PIL.
Original issue reported on code.google.com by [email protected] on 18 Jun 2008 at 2:40
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 18 Jun 2008 at 2:40The text was updated successfully, but these errors were encountered: