我是Node.js的新手,并开始使用Ionic& amp; Cardova Camera API ..
我目前使用此demo.
启动 Android设备 的相机我想要做的是将相机本身嵌入到应用程序中,而不是启动相机但是对于从哪里开始无能为力......
Cordova是否支持此类功能,还是必须使用PhoneGap?
例如,在phonegap.
中或者也许自己写一个自定义相机?
答案 0 :(得分:0)
事实上你可以用Ionic做到这一点。看一下这个official guide。
这是一个简短的概述:
像这样使用它,例如:
function takePicture() {
navigator.camera.getPicture(function(imageURI) {
// imageURI is the URL of the image that we can use for
// an <img> element or backgroundImage.
}, function(err) {
// Ruh-roh, something bad happened
}, cameraOptions);
}
&#13;