我正在尝试使用相机创建一个phonegap应用程序来捕获图像.
当我用Google搜索时,我有两个选择
即使用相机api和捕获api.
当我用Google搜索时,我有两个选择
即使用相机api和捕获api.
navigator.device.capture.captureImage(captureSuccess,captureError,options)和navigator.device.camera.getPicture(captureSuccess,options)之间的区别是什么?
解决方法
我不知道是否仍然存在差异,但在2012年会出现如你所见的差异:
Get and Capture Differences
Get and Capture Differences
Camera.getPicture有一堆capture.captureImage没有的选项.另一个区别是捕获遵循W3C规范,而我们的相机规格是本土.
正如我刚才看到的,captureImage命令来自PhoneGap Documentation
getPicture命令来自Cordova Camera Plugin