Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

pytesseract pdf to text

import cv2
import pytesseract

img = cv2.imread('/Users/user1/Desktop/folder1/pdf1.pdf')
text = pytesseract.image_to_string(img)
print(text)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #pytesseract #pdf #text
ADD COMMENT
Topic
Name
9+9 =