jgodwin
Results
1
comments of
jgodwin
Here's an even simpler example that triggers this behavior: ```python from PIL import Image import numpy as np x = np.tile(np.arange(0,100).reshape(-1,1),300) Image.fromarray(x,mode='L').show() ``` Should get this (with scipy.misc.toimage):  Instead...