I'm trying to take a pic from the camera and display it in the UI without first saving the picture to a roll. So I'm trying to accomplish something similar to this:
raw_photo = photos.pick_image(raw_data=True)
image.image = ui.Image.from_data(raw_photo)
But the camera apparently returns PIL.image object, so I need a way to convert that to something that can be used in the ui?
Any tips here?
I've only been using Pythonista for a few hours and I'm loving it. Addicted, I am.