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): ![image](https://user-images.githubusercontent.com/379511/59883121-4b92a500-9371-11e9-8f8c-05004e7fe83d.png) Instead...