Browse Source

Update 'README.md'

天问 1 week ago
parent
commit
f4c4d09fd4
1 changed files with 14 additions and 0 deletions
  1. 14 0
      README.md

+ 14 - 0
README.md

@@ -1,2 +1,16 @@
 # OCRmyPDF
 
+pdf文件转换,通过ocr识别,转为一个可搜索文字的pdf。
+
+```
+
+docker run -v $(pwd):/app jianboy/ocrmypdf:latest \
+    -l eng+fra \
+    --rotate-pages \
+    --deskew \
+    --title "My PDF" \
+    --jobs 4 \
+    --output-type pdfa \
+    input_scanned.pdf output_searchable.pdf
+
+```