I just need to know if we can convert a scanned pdf file to an editable pdf file using python. I know couple of libraries out there like pytesseract, pyocr. Guidance in this regard will be highly appreciated. Thanks
Asked
Active
Viewed 735 times
-1
Umar Aftab
- 117
- 3
- 12
1 Answers
0
import os
import subprocess
for top, dirs, files in os.walk('/my/pdf/folder'):
for filename in files:
if filename.endswith('.pdf'):
abspath = os.path.join(top, filename)
subprocess.call('lowriter --invisible --convert-to doc "{}"'
.format(abspath), shell=True)
Referenced fromn here
You should look before you ask.
DUDANF
- 2,394
- 8
- 32