You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
425 B
22 lines
425 B
3 years ago
|
// 云函数入口文件
|
||
|
const cloud = require('wx-server-sdk')
|
||
|
|
||
|
cloud.init()
|
||
|
|
||
|
// 云函数入口函数
|
||
|
exports.main = async (event, context) => {
|
||
|
|
||
|
const{
|
||
|
buffer
|
||
|
} =event
|
||
|
let imgBuffer=new Buffer(buffer)
|
||
|
let result
|
||
|
result=await cloud.openapi.ocr.printedText({
|
||
|
type:"photo",
|
||
|
img:{
|
||
|
contentType:"image/png",
|
||
|
value:imgBuffer
|
||
|
}
|
||
|
})
|
||
|
return result
|
||
|
}
|