├── README.md ├── display.png └── imageEd ├── MoveWindow.py ├── __pycache__ └── colors.cpython-34.pyc ├── canvasdraw.py ├── color_palette.py ├── colorful-italy.jpg ├── colors.py ├── icons ├── brush-resize.png ├── cam.png ├── folder-open-resize.png └── tick.png ├── imged.py └── resizeimg.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/README.md -------------------------------------------------------------------------------- /display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/display.png -------------------------------------------------------------------------------- /imageEd/MoveWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/imageEd/MoveWindow.py -------------------------------------------------------------------------------- /imageEd/__pycache__/colors.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/imageEd/__pycache__/colors.cpython-34.pyc -------------------------------------------------------------------------------- /imageEd/canvasdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/imageEd/canvasdraw.py -------------------------------------------------------------------------------- /imageEd/color_palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/imageEd/color_palette.py -------------------------------------------------------------------------------- /imageEd/colorful-italy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/imageEd/colorful-italy.jpg -------------------------------------------------------------------------------- /imageEd/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/imageEd/colors.py -------------------------------------------------------------------------------- /imageEd/icons/brush-resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/imageEd/icons/brush-resize.png -------------------------------------------------------------------------------- /imageEd/icons/cam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/imageEd/icons/cam.png -------------------------------------------------------------------------------- /imageEd/icons/folder-open-resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/imageEd/icons/folder-open-resize.png -------------------------------------------------------------------------------- /imageEd/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/imageEd/icons/tick.png -------------------------------------------------------------------------------- /imageEd/imged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/imageEd/imged.py -------------------------------------------------------------------------------- /imageEd/resizeimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnottheway/Image-Editor-Python-tkinter/HEAD/imageEd/resizeimg.py --------------------------------------------------------------------------------