We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
批量OCR,语言简体中文,保存文件类型Excel,txt显示没问题,但是Excel打开后中文乱码、数字正常,尝试过Excel改编码和字体,但是无效。请问下这个要怎么解决?
The text was updated successfully, but these errors were encountered:
修改csv保存编码为ansi,以兼容office (#237)
93002c6
ANSI
你可以通过以下步骤,修改Umi-OCR的代码,使其以后输出ANSI编码的csv以兼容office:
UmiOCR-data/py_src/ocr/output/output_csv.py
with open(self.outputPath, "a", encoding="utf-8", newline="") as f: # 追加写入本地文件
utf-8
ansi
with open(self.outputPath, "a", encoding="ansi", newline="") as f:
Sorry, something went wrong.
No branches or pull requests
批量OCR,语言简体中文,保存文件类型Excel,txt显示没问题,但是Excel打开后中文乱码、数字正常,尝试过Excel改编码和字体,但是无效。请问下这个要怎么解决?

The text was updated successfully, but these errors were encountered: