├── .gitattributes ├── main.py ├── static ├── 2.jpg ├── 2.png ├── 2.webp └── hZ7ntRp.webp ├── templates ├── about.html └── index.html └── uploads ├── 2.png └── hZ7ntRp.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/flask-image-editor/HEAD/.gitattributes -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/flask-image-editor/HEAD/main.py -------------------------------------------------------------------------------- /static/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/flask-image-editor/HEAD/static/2.jpg -------------------------------------------------------------------------------- /static/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/flask-image-editor/HEAD/static/2.png -------------------------------------------------------------------------------- /static/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/flask-image-editor/HEAD/static/2.webp -------------------------------------------------------------------------------- /static/hZ7ntRp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/flask-image-editor/HEAD/static/hZ7ntRp.webp -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/flask-image-editor/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/flask-image-editor/HEAD/templates/index.html -------------------------------------------------------------------------------- /uploads/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/flask-image-editor/HEAD/uploads/2.png -------------------------------------------------------------------------------- /uploads/hZ7ntRp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/flask-image-editor/HEAD/uploads/hZ7ntRp.png --------------------------------------------------------------------------------