Converts images from one format to another using Pillow. Currently supports JPG, PNG, BMP, and WebP.
This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description
Pillow Image-Format Converter
Description
pil_image_converter is a Python package and CLI tool for converting images between different formats using the Pillow library. It supports conversions between JPG, PNG, BMP, and WebP formats.
Contributions always welcome!
Features
- Convert images between JPG, PNG, BMP, and WebP formats
- Batch conversion of multiple images
- Simple command-line interface
- Skips conversion if the input and output formats are the same
Usage
Dependencies
- Pillow >= 11.0.0
Setup
To set up the development environment:
- Clone the repository
- Install PDM if you haven't already:
pip install pdm - Install dependencies:
pdm install - Convert images:
python main.py ./input_image.jpg ./output_image.png png
Using main.py directly as a CLI tool (Recommended)
If you've cloned the repository or downloaded the source code, you can use the main.py file directly:
- Navigate to the directory containing
main.py - Run the following command:
python main.py <input_path> <output_path> <output_format>
Example:
python main.py ./input_image.jpg ./output_image.png png
For batch conversion:
python main.py ./input_directory ./output_directory png
Note: You should use quotations for paths containing spaces.
-> Ex.: python main.py "./input directory" "./output directory" jpg
Using the pil_image_converter package
You can use the pil_image_converter package directly from the command line:
python -m pil_image_converter <input_path> <output_path> <output_format>
<input_path>: Path to the input image file or directory<output_path>: Path to save the converted image(s)<output_format>: Desired output format (jpg, png, bmp, or webp)
Example:
python -m pil_image_converter ./input_image.jpg ./output_image.png png
For batch conversion, provide a directory as the input path:
python -m pil_image_converter ./input_directory ./output_directory png
Using pil_image_converter in your own projects
-
First, ensure you're working within a virtual environment with PDM:
pdm install -
In your Python script, import the necessary functions:
from pil_image_converter import collect_images, ImageConverter
To convert a single image, use the ImageConverter class directly:
converter = ImageConverter('path/to/input/image.jpg', 'path/to/output/image.png', 'png')
converter.convert()
For batch conversion, you can pass in directories as arguments instead of individual image paths. Then, use the collect_images function and loop through the results:
from pil_image_converter import collect_images, ImageConverter
input_directory = 'path/to/input/directory'
output_directory = 'path/to/output/directory'
output_format = 'png'
image_files = collect_images(input_directory)
for input_path in image_files:
filename = os.path.basename(input_path)
name, _ = os.path.splitext(filename)
output_path = os.path.join(output_directory, f"{name}.{output_format}")
convert_image(input_path, output_path, output_format)
License
This project is licensed under the MIT License. See the LICENSE file for details.
Version
3.0.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pil_image_converter-3.0.3.tar.gz.
File metadata
- Download URL: pil_image_converter-3.0.3.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.22.3 CPython/3.10.11 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
027a1f9794dd723d46b125963828e01fb1b755a2f37ca93a2c673f802ea31662
|
|
| MD5 |
175e1603975bfdaff74adb81ca6749fd
|
|
| BLAKE2b-256 |
b5bb9bf8f3304a85f0bdb1112b8557e6e48a7abe21837d2adede0cbde585db10
|
File details
Details for the file pil_image_converter-3.0.3-py3-none-any.whl.
File metadata
- Download URL: pil_image_converter-3.0.3-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.22.3 CPython/3.10.11 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff84f7e4f5115c921a0bd838e456e37a4e12f688b4672de1ec6d836ed94a3e68
|
|
| MD5 |
de3bebdacb38c03dc4ce02282a7b486e
|
|
| BLAKE2b-256 |
2de8ed2ee1d327fcf2d715a091a07c23487852650480e9f06608ce6597cb968f
|