This is a program which can resize an image to double the size without loosing the quality
- Download the python IDE from www.python.org
- Follow this tutorial to install python Link to the tutorial. Make sure you add python to the path (It's already specified in the tutorial).
- Open Command prompt in windows or Terminal in Mac or Linux.
- Type "pip3 install pillow"
- If this command does not work type "pip install pillow"
- After this, download the repository as zip and then unzip it.
- Open the main.py file.
- Change "Images/NormalImage.jpeg" to the path of the file which you need to change the size.
- Change "Images/ResizedImage.jpeg" to the path to which you need to save the file. This should also include the name of the file. For eg: "ResizedImage.jpeg".
- Click "File --> Save" to save the file and click "Run --> Run Module" to run the file.
- The file should be converted.
- Next time when you want to change the size of a file start from step number 7.
That's it. Let me know if you get stuck in any step. Enjoy!!!
- Make a GUI for this program