哪些第三方平台支持自定义相机应用程序?
我正在使用 CoronaSDK 制作一个应用程序,用于自定义相机按钮、框架和布局,例如应用程序商店中的“Leme Camera”。 但是,它们不支持相机缓冲区,因此我们无法使用自定义布局来控制捕获相机,这是不可接受的。 我发现 PhoneGap 也缺少这个功能。当我点击时,它们会显示本机相机窗口 有人可以推荐其他跨平台框架来实现该功能吗?
I'm making an app with CoronaSDK for custom camera button, frame and layout like "Leme Camera" in app store.
However, they don't support camera buffer so we can't use custom layout to control capturing camera which is not acceptable.
What I found out is PhoneGap also lack that feature. They show native camera window when I tap
Can anyone recommend other cross platform framework for that feature?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
借助 PhoneGap 平台,您可以结合使用 Objective C 和 PhoneGap 标准 javascript 库。
从你所描述的来看,听起来你会想要原生地做这样的事情!大多数第三方 SDK 都无法获得很好的性能,但如果您要在 Objective C 中编写小型计算密集型相机部分,您将获得所需的所有资源,并且能够减少所需的代码量当您尝试支持其他平台时进行移植。
With the PhoneGap platform you are able to use a combination of objective C and the PhoneGap standard javascript library.
From what you have described, it sounds like you would want to go native for something like this! Most of all of these third party SDKs do not get very good performance but if you were to write the small computationally intensive camera part in objective C you get all the resources you need and are able to cut back on the amount of code you will need to port when you try to support additional platforms.