The sample "ImageFromCamera"
// Capture image from camera and show it
// Introduced in build 107
// display a background
backdrop = CreateSprite ( LoadImage ( "background5.jpg" ) )
SetSpriteSize ( backdrop, 100, 100 )
// get camera image
if GetCameraExists()=1
if ShowImageCaptureScreen()=1
while IsCapturingImage()=1
Sync()
endwhile
image=GetCapturedImage()
endif
endif
// main loop
do
// show image here
if GetSpriteExists(1)=0
CreateSprite(1,image)
SetSpritePosition(1,10,10)
SetSpriteSize(1,80,-1)
endif
// update the screen
Print("Result of capture..")
Sync ( )
loop
AGK build 107 (I hope that is what you need)
android version 4.1.1