Forum Archive

image capture not always on camera roll?

JimMullin

Sample code using capture image on iPad Pro works, if 'use photo' is clicked after shot it is in camera roll as seen both by 'photo' and 'camera' aps.

On my iPhone 5s the camera view comes up like above, button takes picture, select 'use photo' BUT it can't be found anywhere???

Webmaster4o

You'll have to save them with code. Try photos.save_image(). For example,

```python
import photos
p=photos.capture_image()
photos.save_image(p)

etc.