• PDF转图片工具


    点击下载( 提取码:1ll1 

    软件功能基于mupdf,UI使用wxpython开发

    功能:

    支持pdf转图片,图片格式png

    支持批量转换

    使用:

    第一步,点击按钮添加文档到列表,或直接将待转换文档拖入列表

    第二步,选择输出目录

    第三部,点击转换

    核心代码:

    class Debug(object):
        DEBUG = True
    
        def TraceLog(self, log=None):
            if Debug:
                import traceback
                traceback.print_exc()
                if log:
                    print(log)
    
    
    class PDF2IMGProcess(Debug):
        def __init__(self, path, callback=None):
            try:
                self.pdf_doc = fitz.open(path)
                self.file_name = os.path.basename(path)
                self.pages = self.pdf_doc.pageCount
                self.callback = callback
                self._Running = True
            except:
                self.TraceLog()
    
        def _TransFile(self, output_path):
            if self.callback:
                self.callback({'file': self.file_name, 'status': '开始!'})
            if self.pages > 0:
                output_path = os.path.join(output_path, self.file_name)
                os.makedirs(output_path, exist_ok=True)
            for p in range(self.pages):
                if not self._Running:
                    break
                if self._TransPage(output_path, p):
                    if self.callback:
                        self.callback({'file': self.file_name, 'page': p, 'status': 'Done!'})
                else:
                    if self.callback:
                        self.callback({'file': self.file_name, 'page': p, 'status': 'Error!'})
                        break
            if self.callback:
                self.callback({'file': self.file_name, 'status': '完成!'})
    
        def _TransPage(self, output_path, page_no, scale=1.8):
            output_name = os.path.join(output_path, '{}_{}.png'.format(self.file_name, page_no))
            page = self.pdf_doc.loadPage(page_no)
            matrix = fitz.Matrix(scale, scale)
            try:
                pix = page.getPixmap(matrix=matrix)
                pix.writePNG(output_name)
                return True
            except:
                self.TraceLog()
                return False
    
        def Start(self, output_path):
            self._Running = True
            Thread(target=self._TransFile, args=(output_path,)).start()
    
        def Cancel(self):
            self._Running = False
    

      

     

  • 相关阅读:
    gridview的应用(删除)
    Javascript无刷新TreeView
    利用GridView显示主细表并添加打开、关闭功能
    UpdatePanel 控件简介
    Asp.net中使用fckeditor在线编辑器配置
    C#实现水晶报表绑定数据并实现打印
    Asp.net 2.0 Treeview 动态填充,并实现无限级树
    SQL数据库建表前期优化
    C#发送Email邮件方法总结
    ASP.NET防SQL注入脚本程序
  • 原文地址:https://www.cnblogs.com/applex007/p/10346219.html
Copyright © 2020-2023  润新知