Skip to content

Latest commit

 

History

History
3 lines (3 loc) · 1.62 KB

File metadata and controls

3 lines (3 loc) · 1.62 KB

Vertical Image SplitterA simple Python application with a graphical user interface (GUI) that allows you to select multiple images and split each one vertically into two halves. The two resulting images are saved as separate files, preserving the original quality.FeaturesEasy-to-use GUI: A simple and intuitive window built with tkinter.Bulk Processing: Select and process multiple image files at once.Quality Preservation: Output images are saved in PNG format to maintain high quality.Intelligent Naming: Output files are automatically named based on the original file name (e.g., original_image_left.png and original_image_right.png).PrerequisitesBefore running the application, you need to have Python installed. You also need to install the Pillow library, which is used for image processing. You can install it using pip:pip install Pillow How to RunClone this repository or download the Python script (image_splitter.py).Open your terminal or command prompt.Navigate to the directory where the script is located.Run the script with the following command:python image_splitter.py UsageAfter running the script, a small window will appear.Click the "Select Images" button.A file dialog will open, allowing you to choose one or more image files (JPG, PNG, BMP).Select the desired images and click "Open".The application will process the selected images and save the split halves in the same directory. A confirmation message will be shown upon completion.OutputFor each image file named my_photo.jpg, the script will generate two new files:my_photo_left.pngmy_photo_right.pngThe output files are always saved in the PNG format to ensure no loss of quality.