Such as image size 200x2048

```
import photos
all_albums = photos.get_albums()
for album in all_albums:
if album.title == 'Test':
assets = album.assets
img = assets[-1].get_image()
img.show()

```