从网上搜集了两个函数,稍作修改,实现了自己想要的功能。
首先要导包 PyMuPDF ←重点 只要导这个里面包含fitz
import fitz import os ''' # 将PDF转化为图片 pdfPath pdf文件的路径 imgPath 图像要保存的文件夹 zoom_x x方向的缩放系数 zoom_y y方向的缩放系数 rotation_angle 旋转角度 ''' def pdf_image(pdfPath, imgPath, zoom_x, zoom_y, rotation_angle): # 打开PDF文件 pdf = fitz.open(pdfPath) # 逐页读取PDF for pg in range(0, pdf.pageCount): page = pdf[pg] # 设置缩放和旋转系数 trans = fitz.Matrix(zoom_x, zoom_y).prerotate(rotation_angle) pm = page.get_pixmap(matrix=trans, alpha=False) # 开始写图像 img=pdfPath[pdfPath.rindex('\') + 1:pdfPath.rindex(r'.')] pm.save(imgPath + str(img)+str(pg)+ ".png") pdf.close() def DFS_file_search(dict_name): import os # list.pop() list.append()这两个方法就可以实现栈维护功能 stack = [] result_txt = [] stack.append(dict_name) while len(stack) != 0: # 栈空代表所有目录均已完成访问 temp_name = stack.pop() try: temp_name2 = os.listdir(temp_name) # list ["","",...] for eve in temp_name2: stack.append(temp_name + "\" + eve) # 维持绝对路径的表达 except NotADirectoryError: if temp_name.endswith(".pdf"): result_txt.append(temp_name) return result_txt pdfPath =[] dirPath = input('请输入要转换pdf为png图片的文件夹路径:') pdfPath = DFS_file_search(dirPath) os.makedirs(dirPath+'\'+"pic") for i in range(0,len(pdfPath)): pdf_image( pdfPath[i], dirPath+'\'+"pic"+'\', 5, 5, 0)
使用演示
文件夹包含导出的图片,至此 *** 作成功。
遇到的问题:
使用pyinstaller 导出exe时发现闪退。
cmd打开命令行输入 .main.exe 查看错误信息
发现缺了模块
原因: 导包的时候,PyMuPDF没有导进去
查找PyMuPDF路径
用pycharm打开工程,菜单->setting->project->project Interpreter
指着PyMuPDF,会有其路径的浮窗出现
↓路径
pyinstaller -F -p E:pythonclpicdownloadvenvLibsite-packages mypython.py
生成即可。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)