CAMERA woes

I know I am probably being silly, but I cannot for the life of me find out how to save an image from the camera!

  1. I would not like to use setContext()
  2. I have tried using readImage(CAMERA) but nothing
    Anyone out there got a solution for me? :slight_smile:
    Thanks, Jordan

Just realized my question could also mean to save to the camera roll. I wish to save it in a codea image (cameraImage = CAMERA)

Don’t you have to specify the camera source, or have you done that? I’m pretty sure there’s an example for the camera built in codea which returns an image so check that out

Thanks, I’ve already specified cameraSource(CAMERA_FRONT). I’ll check out the example now.

Try img = image(CAMERA).

Thanks Andrew! Worked like a charm!