mozhi/utils/imgtxt.go
2023-07-03 17:46:58 +05:30

14 lines
215 B
Go

package utils
import (
"github.com/otiai10/gosseract/v2"
)
func ImgTxt(file string) string {
client := gosseract.NewClient()
defer client.Close()
client.SetImage(file)
text, _ := client.Text()
return text
}