I've added the following code to my app:
GetImage(99,0,0,vScreenX,vScreenY)
print("capturing image")
inc screenCaptureCount
imageCaptureFileName$ = "/external/MyAppName/MyAppName" + str(screenCaptureCount) + ".png"
SaveImage(99,imageCaptureFileName$)
When I compile and run it on my PC, I can find the files it creates. However, I cannot find them on my phone.
I have a suspicion that the files are in my app directory using the specified path and therefore are not accessible via the Android OS utilities.
How do I store the images on my phone where I can find them?
Thanks