检测文件夹中多个PDF的内容类型

问题描述 投票:0回答:1

到目前为止,我在anaconda平台上使用PyPDF2在20000+ pdf中放置水印。该代码适用于大多数PDF文件,但其中一些内容是报告中扫描不佳的图像。

我想知道在python中是否有工具或任何其他方式我可以分析PDF的内容并确定PDF是图像还是带有文本字符的pdf文件。这将允许我知道哪些文件有此缺陷并将它们放在其他文件夹中。

谢谢

我添加了我的代码。

import PyPDF2 #this library requires to be installed
import os


if __name__ == "__main__":


    ROOT_PATH = "."
    #STAMP_PATH = "." + "/stamped/"
    TEMPLATE_PATH = "."
    
    STAMP_PATH = "."
        
    
    count = 0
    
    for dirName, subdirList, fileList in os.walk(ROOT_PATH):
        
        files=[]

        print('Found directory: %s' % dirName)
        for fileName in fileList:

            if fileName.find('.pdf') > 0:
                count += 1

                print('\tHandling %s - %s  %s' % (count, dirName, fileName))

                files.append(fileName)


#=======================main code part ==========================================                
                file= open(fileName,'rb')
                reader = PyPDF2.PdfFileReader(file)
                page= reader.getPage(0)
                
                
                water = open(TEMPLATE_PATH + 'StampTemplate1109.pdf','rb')
                reader2 = PyPDF2.PdfFileReader(water)
                waterpage = reader2.getPage(0)
                
                #command to merge parent PDF first page with PDF watermark page
                page.mergeTranslatedPage(waterpage, 0, -20, expand=True)
                
                
                writer =PyPDF2.PdfFileWriter()
                writer.addPage(page)
                
                #add rest of PDF pages
                for pageNum in range(1, reader.numPages): # this will give length of book
                 pageObj = reader.getPage(pageNum)
                 writer.addPage(pageObj)
                 
                #return the parent PDF file with the watermark 
                # here we are writing so 'wb' is for write binary
                resultFile = open(STAMP_PATH + 'Reviewed ' + fileName,'wb')
                
                writer.write(resultFile)
                file.close()
                resultFile.close()
#==============================================================================                

    print "TOTAL OF %s PROCESSED" % count 
python pdf automation pypdf2
1个回答
0
投票

由于您已经在使用PyPDF2,因此您可能需要使用PageObject.extractText函数来查看是否在PDF的每个页面上都有任何文本。如果你从一个页面得到一个空字符串,那么它可能是一个图像。

© www.soinside.com 2019 - 2024. All rights reserved.