var cmr = plus.camera.getCamera();
cmr.captureImage( function( path ){
alert( "Capture image success: " + path );
},
function( error ) {
alert( "Capture image failed: " + error.message );
},
{resolution:1920*1440}
);
Camera模块管理设备的摄像头,可用于拍照、摄像操作,通过plus.camera获取摄像头管理对象。
cmr.captureImage(successCB, errorCB, options);
说明:
拍照操作成功将通过successCB返回拍照获取的图片路径。 可通过option设置摄像头的各种属性参数
这个option参数设置没有作用,望解决
0 个回复