A simple python program for simple image effects
- tkinter
- PIL / Pillow
both can be installed through the console using
pip install tk
pip install pillow
- Run the
ImageDistorted.py
file (e.g.: running it through the python console or code editors like Visual Studio Code) - Pick an Image with the
Change Directory
Button - Add one or more of the Effects to the image
- This can take a long time, especially for larger images because it is currently done on the cpu and without threading
- Some Effects (like the Gradient Creators,
GaussianBlurSubract
and the Scanlines) need the console for input (e.g.: the pixel width for scanlines, how big the Gaussian Blur should be (in Pixels), e.t.c)
- Export the Image using the
Export Image
Button. The Image will be exported in theExports
folder where the Python programm is saved
- More modular programming (so it is easier to add Effects (currently you need to put the effect in the
Effects
folder and reference it in theEffectsFinder.py
- Making the programm more bug-proof
- Faster Image processing
- Better Layout and Design