Corona:如何在日冕中捕捉屏幕?

时间:2013-01-16 10:07:53

标签: lua screenshot corona 2d-games

有人可以建议如何在全屏和特定部分拍摄电晕屏幕吗?

2 个答案:

答案 0 :(得分:4)

试试这个。它会起作用:

    local function captureDeviceScreen()
       local captured_image = display.captureScreen( true )
       captured_image:scale(.5,.5)
       local alert = native.showAlert( "Success", "Captured Image is Saved to Library", { "OK" } )
    end
    Runtime:addEventListener("tap",captureDeviceScreen)

答案 1 :(得分:3)

google搜索产生了此链接:How to capture a screen in corona

如果您遇到实施问题,请提供更多信息,或者说您到目前为止所尝试的内容,以便我们知道下一步该做什么。