Can you save the entire captured photo to a file?

I’m using an iPhone 4s and I’m only getting the bottom 1/4 of the capture image.

photo = event.target
local photot = display.newGroup()
photot:insert(photo)
display.save(photot, “currentphoto.jpg”, system.DocumentsDirectory) [import]uid: 15571 topic_id: 17120 reply_id: 317120[/import]

try the following :

[lua]local onComplete = function(event)
local photo = event.target
photo.x = 0.5 * display.contentWidth
photo.y = 0.5 * display.contentHeight
display.save(photo, “currentphoto.jpg”, system.DocumentsDirectory)
end[/lua]
[import]uid: 13125 topic_id: 17120 reply_id: 69833[/import]