What did you do?
I have a NumPy array representing an image that I import using ``, and then I display it using the method show(title='A Title').
[some code....]
from PIL import Image
imgIm = Image.fromarray(MyArrayImage)
imgIm.show(title="Image")
What did you expect to happen?
I expected to see Image written as a title of the window.
What actually happened?
I got a random text.
What are your OS, Python and Pillow versions?
- OS: MacOSX
- Python: 3.8.7
- Pillow: 8.3.2