如何使用 Corona 访问 iPhone 相机拍照

发布于 2024-11-24 05:26:15 字数 108 浏览 1 评论 0原文

我是使用 Corona SDK 编程和制作 iphone 和 android 应用程序的新手。我想用 iPhone 相机拍照,然后保存以供进一步工作。如何访问 corona 中设备的摄像头。提前致谢 。

I'm new to programming and making an app for iphone and android with Corona SDK.I want to take a picture with Iphone camera and then save it for further work . How can I access the camera of a device in corona . Thanks in advance .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

悸初 2024-12-01 05:26:15

您可以使用 media.show() 在 Corona 中使用相机。

这是 API 参考页面:
http://developer.anscamobile.com/reference/index/mediashow

以及使用示例:

local onComplete = function(event)
local photo = event.target
    print( "photo w,h = " .. photo.width .. "," .. photo.height )
end

media.show( media.Camera, onComplete )

You can use media.show() to use the camera in Corona.

Here is the API reference page:
http://developer.anscamobile.com/reference/index/mediashow

And a usage example:

local onComplete = function(event)
local photo = event.target
    print( "photo w,h = " .. photo.width .. "," .. photo.height )
end

media.show( media.Camera, onComplete )
半边脸i 2024-12-01 05:26:15

您可以使用此代码,它可能对您有用,

local listener = function( event )
    if media.hasSource( media.Camera ) then
        media.show( media.Camera, sessionComplete )
    else
        native.showAlert("Corona", "Camera not found.")
    end
    return true
end

frameRect:addEventListener("tap",listener);

You can use this code it may useful to you,

local listener = function( event )
    if media.hasSource( media.Camera ) then
        media.show( media.Camera, sessionComplete )
    else
        native.showAlert("Corona", "Camera not found.")
    end
    return true
end

frameRect:addEventListener("tap",listener);
記柔刀 2024-12-01 05:26:15

您可以使用以下网址在 Corona 应用程序中成功实施相机 -
http://developer.coronalabs.com/content/camera

You can use below url for implementing Camera successfully in your Corona App -
http://developer.coronalabs.com/content/camera

梦萦几度 2024-12-01 05:26:15

我查看了API,您似乎无法访问相机来自科罗纳。

I've had a look at the API and it seems that you can't access the camera from Corona.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文