我在HTML5文档中找到了代码http://www.html5plus.org/doc/zh_cn/camera.html,拿过来相机是成功打开了,但是拍完照,相册中是没有的,有知道是怎么的吗?
下面是我找到的代码:
// 扩展API加载完毕后调用onPlusReady回调函数 document.addEventListener( "plusready", onPlusReady, false ); // 扩展API加载完毕,现在可以正常调用扩展API function onPlusReady() { console.log("plusready"); } // 拍照 function captureImage(){ var cmr = plus.camera.getCamera(); var res = cmr.supportedImageResolutions[0]; //supportedImageResolutions: 字符串数组,摄像头支持的拍照分辨率 var fmt = cmr.supportedImageFormats[0]; //supportedImageFormats: 字符串数组,摄像头支持的拍照文件格式 console.log("Resolution: "+res+", Format: "+fmt); cmr.captureImage( function( capturedFile ){ alert( "拍照成功: " + capturedFile );
}, function( error ) { alert( "Capture image failed: " + error.message ); }, {resolution:res,format:fmt}