我用hbuilder真机调试时是可以,绝对路径没问题,但是发布之后安装后就无法调用用绝对路径引用的库了,当然用相对路径连真机调试都调用不了.
var workerPath=plus.io.convertLocalFileSystemURL("dist/worker.js");
var langPath=plus.io.convertLocalFileSystemURL("tessdata/");
var corePath=plus.io.convertLocalFileSystemURL("dist/index.js");
Tesseract.create({
workerPath:'file://'+workerPath,
langPath:'file://'+langPath,
corePath:'file://'+corePath,
}).recognize(file, {
lang: 'numKT'
})
0 个回复