我正在使用display.capureScreen()来拍摄用户最终得分。在那之后,会弹出一个窗口,显示他们的硬币,分数,高分以及刚拍摄的照片。当我这样做时:
screenCap = display.captureScreen(true)
它将图片保存到照片库,因为它设置为true。我的问题是我怎么能不自动保存,但只有用户想要使用“保存图片”按钮?
答案 0 :(得分:1)
您可以使用display.save(object, filename)
保存captureScreen()
返回的显示对象:
local image = display.captureScreen()
image:toBack() -- hide it
... do stuff...
display.save( image, { filename="image.png", isFullResolution=true } )
image:removeSelf() -- no longer need it
image = nil
保存图像时,图像必须处于显示层次结构中。
如果您想稍后保存到相册,display.save
没有为您提供该选项,则必须使用display.capture
或display.captureBounds
。示例:
local image = display.captureScreen()
image:toBack() -- hide it
... do stuff...
local capture = display.capture( image, { saveToPhotoLibrary=true, isFullResolution=true } )
-- cleanup
capture:removeSelf()
capture = nil
image:removeSelf()
image = nil