zoukankan      html  css  js  c++  java
  • 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
    

      

     

  • 相关阅读:
    dir for RequestHandler and request
    python globals和locals
    Spring AOP(通知、连接点、切点、切面)
    Elasticsearch和Head插件安装(转)
    服务发现
    全面的软件测试( 转)
    软件开发项目人员配置
    阿里云oss缩略图如何产生读取 超简单 不看后悔(转)
    Elasticsearch模糊查询
    小米Pro 安装苹果系统
  • 原文地址:https://www.cnblogs.com/applex007/p/10346219.html
Copyright © 2011-2022 走看看