// 拍照
camera(){
let that = this;
uni.chooseImage({
count: 1, //默认9
sizeType: [‘compressed’], //可以指定是原图还是压缩图,默认二者都有
sourceType: [‘camera’,‘album’], //从相册选择
success: function (res) {
console.log(‘img’,res)
imgToBase64(res)
}
})

// 图片转base64
function imgToBase64(data){
	 plus.zip.compressImage({  
		src: data.tempFilePaths[0],  
		dst: "_doc/a.jpg",  
		overwrite: true,  
		width: '1920px',  
		height:'1080px',  
		format: 'jpg',  
		quality: 100  
	  },  
	  function(e) {  
		let reader = new plus.io.FileReader();  
			reader.readAsDataURL(e.target);  
			reader.onloadend = function (e) { 
				//这是转成功的base64文件,需要正则去一下换行
				let base64 = e.target.result.split(',')[1].replace(/[\r\n]/g,"") 
				iOCR(base64)
			};  
	  },  
	  function(err) {  
		plus.nativeUI.alert('未知错误!',function() {  
		});  
	  }  
	);  
}

// iOCR文字识别
function iOCR(image){
	uni.request({
		url:`https://aip.baidubce.com/rest/2.0/solution/v1/iocr/recognise/finance?access_token=${that.access_token}`,
		header:{
			'Content-Type':'application/x-www-form-urlencoded'
		},
		method:"POST",
		data:{
			image:image,
			// 模版id
			templateSign:that.templateSign,
		},
		success:(res)=>{
			console.log('识别结果',res)
		},
		fail:(err)=>{
			console.log('err',err)
		}
	})
}

},

原文链接:https://blog.csdn.net/weixin_35958891/article/details/108284292

Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐