代码拉取完成,页面将自动刷新
package gosseract
import "fmt"
import "os"
import "os/exec"
import "bytes"
import "io/ioutil"
type tesseract0302 struct {
version string
resultFilePath string
commandPath string
}
func (t tesseract0302) Version() string {
return t.version
}
func (t tesseract0302) Execute(params []string) (res string, e error) {
// command args
var args []string
// Register source file
args = append(args, params[0])
// generate result file path
t.resultFilePath, e = generateTmpFile()
if e != nil {
return
}
// Register result file
args = append(args, t.resultFilePath)
// Register digest file
if len(params) > 1 {
args = append(args, params[1])
}
// prepare command
cmd := exec.Command(TESSERACT, args...)
// execute
var stderr bytes.Buffer
cmd.Stderr = &stderr
if e = cmd.Run(); e != nil {
e = fmt.Errorf(stderr.String())
return
}
// read result
res, e = t.readResult()
return
}
func (t tesseract0302) readResult() (res string, e error) {
fpath := t.resultFilePath + outFILEEXTENSION
file, e := os.OpenFile(fpath, 1, 1)
if e != nil {
return
}
buffer, _ := ioutil.ReadFile(file.Name())
res = string(buffer)
os.Remove(file.Name())
return
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。