Hello, I tried to do some low level image processing using numpy on my tiffs. Code example :
import numpy as np
from PIL import Image
image = Image.open(".../photo.tif")
image_array= np.array(image).reshape(-1, 1)
Last line will results in OSError "decoder libtiff not available".
I am using ios 16.6 on iPhone 13 mini.
Any idea how to add decoder into my pythonista?