var cmr = plus.camera.getCamera(); // 相机对象
cmr.captureImage(function(p) { // 拍照事件
that.rotateImg(p);
}, function(error) {
console.log("---" + "捕获图像失败: " + error.message);
}, {
index: "2"
} //建议使用系统匹配路径
);
0 个回复