├── .gitignore ├── GDI effects ├── BwHell │ └── BwHell.py ├── Camo │ └── Camo.py ├── Circles │ └── Circles.py ├── Errors │ ├── Errors.py │ └── RandomErrors.py ├── Invert │ └── Invert.py ├── Melt │ └── Melt.py ├── PanScreen │ └── PanScreen.py ├── RainbowHell │ └── Rainbow hell.py ├── RainbowSpaghetti │ └── Spaghetti.py ├── RotatingTunnel │ └── RotTun.py ├── Stretch │ ├── StretchHori.py │ └── StretchVert.py ├── SwipeScreen │ └── SwipeScreen.py ├── Triangles │ └── Triangles.py ├── Tunnel │ └── Tunnel.py ├── Waves │ └── waves.py ├── Xor │ └── Xor.py └── void │ └── void.py ├── LICENSE ├── README.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | test.py 2 | .venv -------------------------------------------------------------------------------- /GDI effects/BwHell/BwHell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/BwHell/BwHell.py -------------------------------------------------------------------------------- /GDI effects/Camo/Camo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/Camo/Camo.py -------------------------------------------------------------------------------- /GDI effects/Circles/Circles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/Circles/Circles.py -------------------------------------------------------------------------------- /GDI effects/Errors/Errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/Errors/Errors.py -------------------------------------------------------------------------------- /GDI effects/Errors/RandomErrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/Errors/RandomErrors.py -------------------------------------------------------------------------------- /GDI effects/Invert/Invert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/Invert/Invert.py -------------------------------------------------------------------------------- /GDI effects/Melt/Melt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/Melt/Melt.py -------------------------------------------------------------------------------- /GDI effects/PanScreen/PanScreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/PanScreen/PanScreen.py -------------------------------------------------------------------------------- /GDI effects/RainbowHell/Rainbow hell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/RainbowHell/Rainbow hell.py -------------------------------------------------------------------------------- /GDI effects/RainbowSpaghetti/Spaghetti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/RainbowSpaghetti/Spaghetti.py -------------------------------------------------------------------------------- /GDI effects/RotatingTunnel/RotTun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/RotatingTunnel/RotTun.py -------------------------------------------------------------------------------- /GDI effects/Stretch/StretchHori.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/Stretch/StretchHori.py -------------------------------------------------------------------------------- /GDI effects/Stretch/StretchVert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/Stretch/StretchVert.py -------------------------------------------------------------------------------- /GDI effects/SwipeScreen/SwipeScreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/SwipeScreen/SwipeScreen.py -------------------------------------------------------------------------------- /GDI effects/Triangles/Triangles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/Triangles/Triangles.py -------------------------------------------------------------------------------- /GDI effects/Tunnel/Tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/Tunnel/Tunnel.py -------------------------------------------------------------------------------- /GDI effects/Waves/waves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/Waves/waves.py -------------------------------------------------------------------------------- /GDI effects/Xor/Xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/Xor/Xor.py -------------------------------------------------------------------------------- /GDI effects/void/void.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/GDI effects/void/void.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo-Aqua/Python-gdi-repo/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pywin32 --------------------------------------------------------------------------------