I’m trying to save a screen shot to disk. The screen capture looks okay on the simulator display, but when I go to the sandbox and open the file, the image is not complete (appears to contain only the bottom right quadrant of screen). Am I doing somethig wrong here?
screenCap = display.captureScreen (false)
local defaultPath = system.DocumentsDirectory
display.save (screenCap, “scr3.jpg”, defaultPath)
screenCap:scale( 0.25, 0.25 )
screenCap.x = 200
screenCap.y = 300
Thanks for reading!