h5plus

h5plus使用教程


调用每个方法之前需先引入以下代码块

function plusReady() {
	
}
if(window.plus){
	plusReady();
}else{
	document.addEventListener('plusready',plusReady,false);
}

调取手机摄像头进行拍照


function getImage(){
	let cmr = plus.camera.getCamera(); // 获取摄像头对象
	let res = cmr.supportedImageResolutions[0]; // 字符串数组,摄像头支持的拍照分辨率
	let fmt = cmr.supportedImageFormats[0]; // 字符串数组,摄像头支持的拍照文件格式
	console.log("Resolution: "+res+", Format: "+fmt);
	cmr.captureImage( function( path ){ //拍照操作成功的回调函数
			alert( "Capture image success: " + path );  
		},
		function( error ) { // 拍照操作失败的回调函数
			alert( "Capture image failed: " + error.message );
		},
		{resolution:res,format:fmt} // 摄像头拍照参数
	);
}

你可能感兴趣的:(前端)