Linux笔记--基于OCRmyPDF将扫描件PDF转换为可搜索的PDF
1--官方仓库
https://github.com/ocrmypdf/OCRmyPDF
2--基本步骤
# 安装ocrmypdf库
sudo apt install ocrmypdf
# 安装简体中文库
sudo apt-get install tesseract-ocr-chi-sim
# 转换
# -l 表示使用的语言
# --force-ocr 防止出现以下错误:ERROR - PriorOcrFoundError: page already has text! - aborting (use --force-ocr to force OCR)
# input.pdf 表示待转换的pdf
# output.pdf 表示转换后保存的pdf
ocrmypdf -l chi_sim input.pdf output.pdf --force-ocr
3--常见错误
Error1:
ERROR - PriorOcrFoundError: page already has text! - aborting (use --force-ocr to force OCR)
Solution:
添加--force-ocr
ocrmypdf -l chi_sim input.pdf output3.pdf --force-ocr
原文地址:https://blog.csdn.net/weixin_43863869/article/details/144041330
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!