如何从服务器端网页访问iPhone相机?
如何从Web应用程序(服务器端Web)访问iPhone相机? (例如 asp、php、jsp)
How to access iphone camera from webapp(server-side web)? (ex asp,php,jsp)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
服务器上运行的代码不可能访问 iPhone 的摄像头。
客户端 Web 应用程序代码(Javascript、HTML、CSS)甚至无法访问相机。
您需要编写一个完整的本机应用程序才能使用相机。如果您仍然希望能够使用网络技术来执行此操作,请查看 PhoneGap:http://phonegap。 com/
PhoneGap 可以更轻松地编写加载网页的应用程序,但允许访问设备本机 API。不过,构建用户界面会更加困难。
It's not possible for code running on a server to access an iPhone's camera.
It's not even possible for client-side web-app code (Javascript, HTML, CSS) to access the camera.
You'll need to write a full native app to be able to work with the camera. If you'd still like to be able to use web-technologies to do this, have a look at PhoneGap: http://phonegap.com/
PhoneGap makes it easier to write an app that loads a web page, but allows for access to device native APIs. Building the user interface will be more difficult though.
可以在 iOS 中访问相机
首先,在 HTML 正文中使用视频标签,如下所示,
这将请求访问相机的权限
然后在 JavaScript 中,通过使用视频元素,在视频标签上显示视频
it is possible to access camera in iOS
First, in HTML body use video tag as below
this will ask permission to access the camera
Then in JavaScript, by using video element, display the video on the video tag