Liter is a simple and easy-to-use image converter built with Python. It lets you change the format of a single image or process many images in a folder at the same time (batch processing).
Right now, Liter can convert between PNG, JPEG, WEBP, and ICO file types.
To run Liter on your computer, you need to have Python installed. You also need to install the library that handles the images.
- Download or clone this project to your computer.
- Open your terminal or command prompt and go to the project folder.
- Install the required image library by typing this command:
pip install PillowTo start the converter, just run the main file:
python main.py
When the program starts, you will see a menu with two options:
- Convert a single file: Type the path to one image, and the program will convert it.
- Batch processing: Type the path to a folder. You can choose to convert all the images inside, or only specific types (like just the PNG files).
After you choose, the program will ask which output format you want. The new images will be saved in the same folder, with _converted added to their name so your original pictures stay safe.
This project uses the Pillow (PIL) library to power all of the image converting and processing features.
This project is licensed under the Apache License 2.0.