Type DisplayObject Event completion Revision 2017.3060 Keywords completion, target
The display image object generated after a user completes a camera session.
local function onComplete( event )
local photo = event.target
print( "photo w,h = " .. photo.width .. "," .. photo.height )
end
if media.hasSource( media.PhotoLibrary ) then
media.selectPhoto( { mediaSource=media.PhotoLibrary, listener=onComplete } )
else
native.showAlert( "Corona", "This device does not have a photo library.", { "OK" } )
end