函数功能:加载自定义的触动精灵点阵字库工具生成的点阵字库。
引擎版本:iOS v2.3.9,Android v2.2.1 以上
函数方法
index = addTSOcrDict(dict)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
dict | string | 是 | 字库名,字库工具选择的文件格式如:dict.txt,需放置于触动精灵 res 目录 |
返回值 | 类型 | 说明 |
---|---|---|
index | number | 字库标识 |
函数用例
识别屏幕指定区域内的文字
--相同字库只需要加载一次,重复加载会导致内存溢出--字库文件必须放置于触动精灵的 res 目录,加载字库时无需填写绝对路径。index = addTSOcrDict("dict.txt")ret = tsOcrText(index,962,19,1068,54,"FFFFFF,000000",90)toast(ret)