我有一个文件夹,其中包含PDF,PNG和JPEG类型的文件。我正在尝试将PDF文件转换为图像,这是我尝试过的代码:
from pdf2image import convert_from_path, convert_from_bytes
from pdf2image.exceptions import (
PDFInfoNotInstalledError,
PDFPageCountError,
PDFSyntaxError
)
images = convert_from_path('41117 UIs in eng.pdf')
for i, image in enumerate(images):
fname = 'image'+str(i)+'.jpg'
image.save(fname, "JPEG")
很明显,此代码仅适用于单个pdf文件,我想转移代码以提供多个pdf文件,这些pdf文件与同一文件夹中的其他文件类型混合在一起。
请帮助。
答案 0 :(得分:3)
您可以尝试类似的操作(此脚本在与python程序相同的目录中找到pdf文件):
final String url ="......../stedant/map.php?st_id=" + st_id;