On daily build 2013.2090 was added a flag that enables you to save/capture image with full resolution (http://docs.coronalabs.com/api/library/display/save.html).
The function is not working properly, saving/capturing black images.
I already opened a bug (#28726) in which I specified that it was not working on Galaxy S1, but now I found out that it is also not working on iPhone 5 (iOS 7).
That bug it appears to be related to the size of the image being saved.
You can replicate the bug by using this image and the code below:
display.setDefault( "background", 255,255,255 ) local photo = display.newImage("photo.jpg", true) -- display image that was saved photo.anchorX = 0.5 photo.anchorY = 0 photo.y = display.contentCenterY photo.x = display.contentCenterX local function capture() print("Running Capture non-FR...") display.capture(photo, {saveToPhotoLibrary=true, isFullResolution = false}) end local function captureFR() print("Running Capture with FR...") display.capture(photo, {saveToPhotoLibrary=true, isFullResolution = true}) end local w = require "widget" local b = w.newButton{ x = 100, y = 50, label="Capture non-FullRes", onRelease=capture } local c = w.newButton{ x = 290, y = 50, label="Capture FullRes", onRelease=captureFR }