├── .idea ├── .gitignore ├── artifacts │ └── Image_Resizer_jar.xml ├── compiler.xml ├── description.html ├── encodings.xml ├── gradle.xml ├── libraries │ └── controlsfx_8_40_15.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml └── vcs.xml ├── Image Resizer.iml ├── README.md ├── jar └── Image Resizer.jar ├── lib └── controlsfx-8.40.15.jar ├── out └── production │ └── Image Resizer │ ├── META-INF │ └── MANIFEST.MF │ └── com │ └── marwaeltayeb │ └── fir │ ├── Main.class │ ├── assets │ ├── logo.png │ └── preview.png │ ├── controller │ └── MainController.class │ ├── stylesheet │ └── application.css │ ├── ui │ └── main.fxml │ └── utils │ ├── ImageSizeUtils.class │ └── ResizeManager.class └── src ├── META-INF └── MANIFEST.MF └── com └── marwaeltayeb └── fir ├── Main.java ├── assets ├── logo.png └── preview.png ├── controller └── MainController.java ├── stylesheet └── application.css ├── ui └── main.fxml └── utils ├── ImageSizeUtils.java └── ResizeManager.java /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/artifacts/Image_Resizer_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/.idea/artifacts/Image_Resizer_jar.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/.idea/description.html -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/controlsfx_8_40_15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/.idea/libraries/controlsfx_8_40_15.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Image Resizer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/Image Resizer.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/README.md -------------------------------------------------------------------------------- /jar/Image Resizer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/jar/Image Resizer.jar -------------------------------------------------------------------------------- /lib/controlsfx-8.40.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/lib/controlsfx-8.40.15.jar -------------------------------------------------------------------------------- /out/production/Image Resizer/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: com.marwaeltayeb.fir.Main 3 | 4 | -------------------------------------------------------------------------------- /out/production/Image Resizer/com/marwaeltayeb/fir/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/out/production/Image Resizer/com/marwaeltayeb/fir/Main.class -------------------------------------------------------------------------------- /out/production/Image Resizer/com/marwaeltayeb/fir/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/out/production/Image Resizer/com/marwaeltayeb/fir/assets/logo.png -------------------------------------------------------------------------------- /out/production/Image Resizer/com/marwaeltayeb/fir/assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/out/production/Image Resizer/com/marwaeltayeb/fir/assets/preview.png -------------------------------------------------------------------------------- /out/production/Image Resizer/com/marwaeltayeb/fir/controller/MainController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/out/production/Image Resizer/com/marwaeltayeb/fir/controller/MainController.class -------------------------------------------------------------------------------- /out/production/Image Resizer/com/marwaeltayeb/fir/stylesheet/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/out/production/Image Resizer/com/marwaeltayeb/fir/stylesheet/application.css -------------------------------------------------------------------------------- /out/production/Image Resizer/com/marwaeltayeb/fir/ui/main.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/out/production/Image Resizer/com/marwaeltayeb/fir/ui/main.fxml -------------------------------------------------------------------------------- /out/production/Image Resizer/com/marwaeltayeb/fir/utils/ImageSizeUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/out/production/Image Resizer/com/marwaeltayeb/fir/utils/ImageSizeUtils.class -------------------------------------------------------------------------------- /out/production/Image Resizer/com/marwaeltayeb/fir/utils/ResizeManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/out/production/Image Resizer/com/marwaeltayeb/fir/utils/ResizeManager.class -------------------------------------------------------------------------------- /src/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: com.marwaeltayeb.fir.Main 3 | 4 | -------------------------------------------------------------------------------- /src/com/marwaeltayeb/fir/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/src/com/marwaeltayeb/fir/Main.java -------------------------------------------------------------------------------- /src/com/marwaeltayeb/fir/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/src/com/marwaeltayeb/fir/assets/logo.png -------------------------------------------------------------------------------- /src/com/marwaeltayeb/fir/assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/src/com/marwaeltayeb/fir/assets/preview.png -------------------------------------------------------------------------------- /src/com/marwaeltayeb/fir/controller/MainController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/src/com/marwaeltayeb/fir/controller/MainController.java -------------------------------------------------------------------------------- /src/com/marwaeltayeb/fir/stylesheet/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/src/com/marwaeltayeb/fir/stylesheet/application.css -------------------------------------------------------------------------------- /src/com/marwaeltayeb/fir/ui/main.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/src/com/marwaeltayeb/fir/ui/main.fxml -------------------------------------------------------------------------------- /src/com/marwaeltayeb/fir/utils/ImageSizeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/src/com/marwaeltayeb/fir/utils/ImageSizeUtils.java -------------------------------------------------------------------------------- /src/com/marwaeltayeb/fir/utils/ResizeManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwa-eltayeb/Fast-Image-Resizer/HEAD/src/com/marwaeltayeb/fir/utils/ResizeManager.java --------------------------------------------------------------------------------