当前位置: 首页 > news >正文

electron-vite 配合python

要实现的功能

  1. pdf转化和doc
  2. doc转换为pdf
  3. pdf的合并

Q:为什么不直接使用node?

 只想尝试electron是否能和其他的程序相互配合
  1. 构建工具 yarn | npm 不要选择pnpm
  2. electron框架选择 electron-vite
  3. 转换功能选择 python库
  from pdf2docx import Converterimport docx2pdffrom PyPDF2 import  PdfMerger

electron-vite要怎么嵌入python

可看csdn这篇文章

项目结构

在这里插入图片描述
所有的python代码都要放到resources文件夹下面

注意点1

import pdf2docPathAddress from '../../resources/pythonCode/pdf2doc.py?asset'
import pythonPathAddress from '../../resources/python/python-3.13.5-embed-amd64/python.exe?asset'
import pdfMergePathAddress from '../../resources/pythonCode/PdfFileMerger.py?asset'
上述代码导入的时候一定要写?asset,让electron-vite知道这是静态文件,
否则打包的时候会将python代码位置放错

这是在主进程中所作的事情

注意点2

const scriptPath = is.dev? pdf2docPathAddress: pdf2docPathAddress.replace('app.asar', 'app.asar.unpacked')const pythonPath = is.dev? pythonPathAddress: pythonPathAddress.replace('app.asar', 'app.asar.unpacked')const pdfMergePath = is.dev? pdfMergePathAddress: pdfMergePathAddress.replace('app.asar', 'app.asar.unpacked')
 必须这么做,打包之后静态文件,也就是python代码会在app.asar.unpacked文件下面! 如果不更改那么在使用spawn的时候,不能找到python.exe

为什么静态文件会放到resources下面?

asarUnpack:- resources/**
因为electron-builder.yml中配置,你可自己手动更改,但不建议

贴出所有pdf转换为doc代码剩余都类似

ipcMain.handle('convert-pdf-to-docx', async (_, pdfPath) => {const docxPath = pdfPath.replace(/\.pdf$/, '.docx')return new Promise((resolve, reject) => {const py = spawn(pythonPath, [scriptPath, pdfPath, docxPath, 'convert-pdf-to-docx'])py.on('close', (code) => {if (code === 0) {resolve(docxPath)// 系统弹窗dialog.showMessageBox({type: 'info',title: '转换成功',message: '文件已成功转换为 DOCX 格式'}).then(() => {// 打开文件所在目录shell.showItemInFolder(docxPath)// 打开文件shell.openPath(docxPath)})} else {// 系统弹窗dialog.showMessageBox({type: 'error',title: '转换失败',message: `转换失败,退出码: ${code}`}).then(() => {reject(new Error(`转换失败,退出码: ${code}`))})}})py.on('error', (error) => {reject(new Error(`启动 Python 失败: ${error.message}`))})})
})
import sys
import os# pdf和world相互转换# 自动注入嵌入式 python site-packages 路径
def inject_site_packages():base_dir = os.path.dirname(os.path.abspath(__file__))# 适配你的嵌入式目录结构(根据实际路径调整)python_lib = os.path.abspath(os.path.join(base_dir, '..', 'python', 'python-3.13.5-embed-amd64', 'Lib', 'site-packages'))if python_lib not in sys.path:sys.path.insert(0, python_lib)
inject_site_packages()from pdf2docx import Converter
import docx2pdf
from pathlib import Pathdef pdf_to_docx(pdf: Path, docx: Path):try:cv = Converter(str(pdf))cv.convert(str(docx), start=0, end=None)cv.close()print(f"文件 {pdf} 已成功转换为 {docx}")return Trueexcept Exception as e:print(f"转换过程中出错: {e}")raisedef docx_to_pdf(docx: Path, pdf: Path):try:# 确保目标目录存在out_dir = pdf.parentout_dir.mkdir(parents=True, exist_ok=True)docx2pdf.convert(str(docx), str(pdf))print(f"文件 {docx} 已成功转换为 {pdf}")return Trueexcept Exception as e:print(f"docx 转 pdf 过程中出错: {e}")return Falseif __name__ == '__main__':pdf_path = sys.argv[1]docx_path = sys.argv[2]action = sys.argv[3]if action == 'convert-pdf-to-docx':pdf = Path(pdf_path)docx = Path(docx_path)pdf_to_docx(pdf, docx)elif action == 'convert-docx-to-pdf':docx = Path(docx_path)pdf = Path(pdf_path)docx_to_pdf(docx, pdf)

页面展示

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

http://www.xdnf.cn/news/1390177.html

相关文章:

  • UPDF for mac PDF编辑器
  • JAVA:Spring Boot 集成 Easy Rules 实现规则引擎
  • 来自火山引擎的 MCP 安全授权新范式
  • 嵌入式Linux驱动开发:i.MX6ULL按键中断驱动(非阻塞IO)
  • PostgreSQL15——子查询
  • 基于SQL大型数据库的智能问答系统优化
  • Emacs 多个方便查看函数列表的功能
  • QML QQuickImage: Cannot open: qrc:/images/shrink.png(已解决)
  • 前端-初识Vue实例
  • Spring Boot Redis序列化全解析(7种策略)
  • 2024年06月 Python(四级)真题解析#中国电子学会#全国青少年软件编程等级考试
  • leetcode 461 汉明距离
  • 如何在FastAPI中玩转全链路追踪,让分布式系统故障无处遁形?
  • 基于MCP工具的开发-部署-上线与维护全流程技术实现与应用研究
  • 北斗导航 | PPP-RTK算法核心原理与实现机制深度解析
  • AI助力PPT创作:秒出PPT与豆包AI谁更高效?
  • TypeScript:map和set函数
  • 【前端教程】从基础到专业:诗哩诗哩网HTML视频页面重构解析
  • Java试题-选择题(21)
  • new/delete 和 malloc/free 区别
  • 小杰机器视觉(five day)——直方图均衡化
  • linux系统学习(13.系统管理)
  • 基于orin系列的刷写支持笔记
  • 30分钟入门实战速成Cursor IDE(1)
  • 【拍摄学习记录】04-拍摄模式/曝光组合
  • Nginx的主要配置文件nginx.conf详细解读——及其不间断重启nginx服务等操作
  • 数据结构—第五章 树与二叉树
  • 机器学习算法全景解析:从理论到实践
  • vue3 鼠标移上去 显示勾选框 选中之后保持高亮
  • 自然语言提取PDF表格数据