为什么使用pypdf2无法读取诸如fi,ff,fl之类的文本?

时间:2019-05-29 00:30:32

标签: python pypdf2

某些字母(例如fl,ff,fi)未在python中使用pypdf2提取

我正在使用pypdf2模块来解析python中的PDF。

from PyPDF2 import PdfFileReader

    with open('C:\\path\\file.pdf', 'rb') as f:
    reader = PdfFileReader(f)


    contents = reader.getPage(0).extractText()
    print(contents)

没有错误。该代码可以正常工作,但不会解析fl,ff,fi字母。

0 个答案:

没有答案