🎨 Add logging https://github.com/siyuan-note/siyuan/issues/12960
This commit is contained in:
parent
cb16e5781e
commit
59bb202b13
1 changed files with 2 additions and 2 deletions
|
@ -231,7 +231,7 @@ func Tesseract(imgAbsPath string) (ret []map[string]interface{}) {
|
|||
logging.LogInfof("tesseract [path=%s] success [%s]", imgAbsPath, tsv)
|
||||
|
||||
// 按行分割 TSV 数据
|
||||
lines := strings.Split(tsv, "\r\n")
|
||||
lines := strings.Split(tsv, "\n")
|
||||
|
||||
// 解析 TSV 数据 跳过标题行,从第二行开始处理
|
||||
for _, line := range lines[1:] {
|
||||
|
@ -262,7 +262,7 @@ func GetOcrJsonText(jsonData []map[string]interface{}) (ret string) {
|
|||
if text, ok := dataMap["text"]; ok {
|
||||
// 确保 text 是字符串类型
|
||||
if textStr, ok := text.(string); ok {
|
||||
ret += " " + textStr
|
||||
ret += " " + strings.ReplaceAll(textStr, "\r", "")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue