I am writing code on my Android. I know, it's weird. But my notebook is being repaired :)
I am trying to display an image generated by pillow library. I'm doing this within Pydroid app.
Matplotlib charts are displaying okay. But not the image of pillow.
There is a question similar to mine, that links this problem to image magic not being installed. But it is not particular to Android. If this is also the case for me, please specify how to install it, since it is not a pip package. Here is my code
from PIL import Image
img = Image.new(
mode='RGB',
size=(400, 240),
color=(153,153,153)
)
img.show()