textin/test.js

7 lines
176 B
JavaScript
Raw Normal View History

2024-10-13 12:08:57 +08:00
import ti from "apigo.cc/ai/textin"
import file from "apigo.cc/gojs/file"
2024-10-02 14:55:11 +08:00
function main(){
2024-10-13 12:08:57 +08:00
return {a : ti.OCR(file.readBytes("img.png")), b : ti.OCRFromFile("img.png")}
2024-10-02 14:55:11 +08:00
}