Problem with display.save on iPhone 5

When using the following on an iPhone 5 it grabs the screen as if it is the dimensions of an iPhone 4/4S, basically the top and bottom are chopped off.

display.save( display.currentStage, “entireScreen.jpg”, baseDir ) [import]uid: 8697 topic_id: 34660 reply_id: 334660[/import]

Is your app’s “config.lua” file set up to be letterboxed?
If so, then this is the correct behavior because the stage does not include the letterbox area.

If you want to capture the entire screen, including the letterbox area, then you should use the [lua]display.captureScreen()[/lua] function and then [lua]display.save()[/lua] the resulting image object.
http://docs.coronalabs.com/api/library/display/captureScreen.html
[import]uid: 32256 topic_id: 34660 reply_id: 137752[/import]

Is your app’s “config.lua” file set up to be letterboxed?
If so, then this is the correct behavior because the stage does not include the letterbox area.

If you want to capture the entire screen, including the letterbox area, then you should use the [lua]display.captureScreen()[/lua] function and then [lua]display.save()[/lua] the resulting image object.
http://docs.coronalabs.com/api/library/display/captureScreen.html
[import]uid: 32256 topic_id: 34660 reply_id: 137752[/import]