Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardoProfe666 committed Jan 10, 2024
1 parent b21e634 commit e429529
Show file tree
Hide file tree
Showing 10 changed files with 85 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
*.pyc
*.pyc
\build
\dist
39 changes: 38 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,39 @@
# PyImageEditor
🖼 Editor de imágenes en Python
Editor de imágenes en Python, usando CustomTkinter y PIL.

## 🔥 Funcionalidades
- **Posición**
- Rotación
- Zoom
- Inversión de Posición
- **Colores**
- Blanco y Negro
- Inversión de Colores
- Sepia
- Brillo
- Saturación
- **Efectos**
- Selección de efectos variados
- Gaussian Blur
- Contraste
- Nitidez
- **Exportación de la imagen**

## 📸 Capturas de Pantallas
### Pantalla Inicial
> ![1](assets/1.png)
### Pantalla de Posición
> ![2](assets/2.png)
### Pantalla de Colores
> ![3](assets/3.png)
### Pantalla de Efectos
> ![4](assets/4.png)
### Pantalla de Exportación
> ![5](assets/5.png)
## ✨ Descarga del ejecutable
Para descargar el ejecutable siga el [siguiente enlace](https://github.com/EduardoProfe666/PyImageEditor/releases/latest)
Binary file added assets/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
44 changes: 44 additions & 0 deletions main.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# -*- mode: python ; coding: utf-8 -*-


block_cipher = None


a = Analysis(
['main.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)

exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='main',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
2 changes: 0 additions & 2 deletions src/gui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,5 +193,3 @@ def export_image(self, name, file, path):
'Fallo durante la exportación de la imagen. Vuelva a intentarlo')


if __name__ == '__main__':
App()

0 comments on commit e429529

Please sign in to comment.