本文主要是介绍【Python】 pdf2image中所需要的poppler文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题
在使用pdf2image是需要依赖poppler这个可执行文件, 网上找不到相应的文件。
使用
from PIL import Image
import fitz
from pdf2image import convert_from_pathpdf_file = r'D:\workspace\python学习笔记.pdf'
save_path = r'D:\workspace\\long_image.png'
poppler_path = r"D:\app\poppler_2\bin"# 将PDF文件转换为图像列表
image_list = convert_from_path(pdf_file, poppler_path=poppler_path)# 获取第一个图像的尺寸
page_width, page_height = image_list[0].size# 创建一个与所有图像大小相同的画布
merged_image = Image.new("RGB", (page_width, page_height * len(image_list)), (255, 255, 255))# 将所有图像粘贴到画布上
for i, image in enumerate(image_list):merged_image.paste(image, (0, i * page_height))# 将画布保存为一张长图
merged_image.save(save_path)
资源下载
- Poppler下载
这篇关于【Python】 pdf2image中所需要的poppler文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!