1

撮影後にscreenCapを表示しようとしていますが、screenCapを保存していますが、最新のscreenCapのURLを取得するにはどうすればよいですか?

local screenCap = display.captureScreen( true )
local alert = native.showAlert( "Success", "Screen Capture Saved to Library", { "OK" } )

NewsScreenShot = display.newImage( "  path to the PNG file  " )
4

2 に答える 2

1

http://jp.anscamobile.com/dev/reference/index/displaycapturescreen/index.html

画像は、Picture X.png という名前でデバイス ギャラリーに保存されます。この後、最新のインデックス付き画像をカスタム選択する必要があります。

ところで、display.save("name",path) で試すことができます。これは常に最後に保存された画像になります。

于 2013-02-26T15:51:09.097 に答える