```python from PIL import Image import numpy as np a = np.empty((496, 0), dtype=np.uint8) b = Image.fromarray(a) # succeeds c = np.asarray(b) # fails with SystemError: tile cannot extend outside image ``` PIL version: 8.4.0 NumPy version: 1.21.2
PIL version: 8.4.0
NumPy version: 1.21.2