屏幕多票据识别
命令说明
使用 Laiye Intelligent Document Processing 识别指定屏幕范围的多种票据,识别结果返回数组
命令原型
arrayRet = Mage.ScreenOCRInvoice(target,rect,config,time,optionArgs)
命令参数
参数 | 必选 | 类型 | 默认值 | 说明 |
---|---|---|---|---|
target | True | decorator | @ui"" | 通过鼠标选取或截取需要识别的目标屏幕范围。包含窗口、元素、范围等信息 |
rect | True | dictionary | {"x": 0, "y": 0, "width": 0, "height": 0} | 需要查找的范围,程序会在控件这个范围内进行识别,如果范围传递为 {"x":0,"y":0,"width":0,"height":0},则进行控件矩形区域范围内的识别 |
config | True | expression | {} | Laiye Intelligent Document Processing 的调用配置 |
time | True | number | 30000 | 指定等待重试查找屏幕范围时间(以毫秒为单位),如果超出该时间,则引发异常。默认30000毫秒(30秒) |
bContinueOnError | False | boolean | False | 指定即使活动引发错误,自动化是否仍应继续。该字段仅支持布尔值(True,False)。默认值为False |
iDelayAfter | False | number | 300 | 执行活动后的延迟时间(以毫秒为单位)。默认时间为300毫秒 |
iDelayBefore | False | number | 200 | 活动开始执行任何操作之前的延迟时间(以毫秒为单位)。默认的时间量是200毫秒 |
返回结果
arrayRet,将命令运行后的结果赋值给此变量。
运行实例
/**********************屏幕多票据识别**********************
命令原型:
arrayRet = Mage.ScreenOCRInvoice(@ui"",{"x": 0, "y": 0, "width": 0, "height": 0},{},30000,{"bContinueOnError": false, "iDelayAfter": 300, "iDelayBefore": 200})
入参:
target--目标元素
rect--默认识别范围
config--mage配置,需配置Pubkey和Secret.Type:Dict
time--超时时间.默认单位:毫秒.Type:Int
optionArgs--可选参数(包括:错误继续执行/执行后延时/执行前延时).Type:Dict
出参:
arrayRet--函数调用的输出保存到的变量
注意事项:
需要获取mage对应的Key/Secret和URL
****************************************************/
Dim arrayRet="" // 输出结果
arrayRet = Mage.ScreenOCRInvoice(@ui"图像<img>3",{"x": 0, "y": 0, "width": 0, "height": 0},{"Pubkey":"UsCqnK5TOHBosdYxkuC6Zmop","Secret":"TAfkRueOzvUeJy42jE7xEpjJ6qapyA4u","Url":"https://demo.laiye.com:8082"},30000,{"bContinueOnError": false, "iDelayAfter": 300, "iDelayBefore": 200})
Traceprint(arrayRet)