var cmr = plus.camera.getCamera();
//字符串数组,摄像头支持的拍照分辨率
var res = cmr.supportedImageResolutions[0];
//字符串数组,摄像头支持的拍照文件格式
var fmt = cmr.supportedImageFormats[0];
cmr.captureImage(function(p) {
//拍照操作成功的回调函数
this.src = p;
console.log(this.src)
}, function(e) {
//拍照操作失败的回调函数
console.log('失败:' + e.message);
}, {
//摄像头拍照参数
filename: '/',
index: this.cameraIndex
});
filename的值该怎么设置能在IOS正常获取到图片路径并显示在页面上??
谢谢大家了!!!!!
0 个回复