This python application allows users to load images and rotate them.
The app can be downloaded an ran on its own, no other files needed besides the image you want to use.
To run this application. You will need python3, the tkinter module, and pillow module.
pip3 install tkinter
pip3 install pillow
- Pillow can sometimes be complicated to install. See this link for troubleshooting.
python3 image.py
- Has a menu with four options: "Load image", "Rotate 90 Clockwise", "Rotate 90 Counter-clockwise", "Close".
- Load Image: Menu option allows user to select an image from their system, once completed the file path will appear in the box.
- Rotate 90 Degrees Clockwise: Menu option loads the image that is set in the text field into Pillow, it then rotates the image 90 degrees clockwise and then saves the image.
- Rotate 90 Degrees Counter-Clockwise: Menu option loads the image that is set in the text field into Pillow, it then rotates the image 90 degrees counter-clockwise and then save the image.
- Close: Close the program.