After last update, agk 2018/12/12, I found problems with the use of the camera on smartphones.The programs run with the smartphone where you use these commands do not work anymore. This had happened in the past resolved with next update of agk.I wonder why and what can I do now to use the camera with this version of agk.
Dopo ultimo aggiornamento,agk 2018/12/12,ho riscontrato problemi con l'utilizzo della camera su smartphone.I programmi eseguiti con la smartphone dove si fa uso di questi comandi non funzionano piu'.Questo era gia' accaduto in passato risolto con successivo aggiornamento di agk.Mi domando il perchè e cosa posso fare adesso per utilizzare la camera con questa versione di agk.
// 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