/PyPaint

一款基于python的画图板,支持多种图片编辑,在不断优化中... <strong>画图板</strong> <strong>画图</strong> <strong>图片编辑</strong> <strong>美图</strong> <strong>PS</strong>

Primary LanguagePython

python画图板

介绍

本项目基于opencv-python,支持基本的图像处理和常用的图像算法

  • 图片拼接
  • 画笔
  • 几何绘制
  • 高斯模糊
  • 边缘检测
  • 锐化

界面

目前界面比较简陋, 持续优化中...

image

环境配置

配置python环境

没有python环境可无脑安装miniconda, 官网:https://docs.anaconda.com/miniconda/

直接下载:https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe

安装依赖

配置python环境后, 在项目目录下cmd命令行执行命令:

pip install -r requirement.txt

运行

在项目目录下使用命令行:

python main.py

其他(待更新)

使用pywebview版本GUI界面

文档:https://pywebview.flowrl.com/guide/

pip install pywebview

打包发布

打包程序会将虚拟环境中的所有依赖都打包进去,因此需要新建虚拟环境,只安装必要的包

文档:https://pyinstaller.org/en/stable/usage.html

pip install pyinstaller
pyinstaller --onefile main.py
pyinstaller -F -w -i 图标.ico main.py