I am using PyPDF2 for extract text from pdf. All examples which I found in the google look like my code:
import PyPDF2
reader = PyPDF2.PdfFileReader("test2.pdf")
page = reader.getPage(0)
text = page.extractText()
print(text.encode("utf-8"))
However, I have empty text in my console:
b''
This code I have tested for different pdf and all pdf's were empty
UPD:
# getDocumentInfo
{'/Producer': 'Skia/PDF m75'}
File pdf