Replace each character in a string with a corresponding image
-
Here is a simple script for opening an image from the camera roll and loading it into an imageview
from PIL import Image import ui import photos import console show_albums = False include_metadata = False original = True raw_data = True multi = False image = ui.Image.from_data(photos.pick_image(show_albums,include_metadata,original,raw_data,multi)) window = ui.load_view() window.present('popover') window['view'].image = image
If you need to know how...
-
when I run JonB's sample code above using 1.5 on iOS 8 Pythonista always crashes. Any idea why?