Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是电晕新手,我正在尝试从 iPhone 相机拍摄多张照片并尝试将这些照片插入到 . 中system.douments.directory。有人可以帮助我如何在此目录中插入具有唯一名称的新图像文件。如果我想自定义保存图像的位置怎么办?谢谢
system.douments.directory
我可以通过使用以下代码片段来做到这一点
local dateTime = os.date("%c" ) display.save(imageCaptured,tostring(dateTime)..".jpg")
dateTime 总是给我一个新名字,imageCaptured是我从相机 api 拍摄的图像。
imageCaptured
在大多数情况下,你不能。
Corona 通常只能保存在应用程序沙箱中。
对于图像,您可以使用以下方法保存到库中:
http://docs.coronalabs.com/api/library/display/capture.html