⚒️ A Command Line Tool to resize and change formats of Images
Python/379
Pixage.mp4
- It converts .jpg to .png and .png to .jpg by file naming
- It enlarges and reduces images by multiplying dimensions
- Pillow - 9.0.1
- typer - 0.4.0
- colorama==0.4.4
- Clone the Repository
git clone https://github.com/arjun-ms/Pixage.git- Change directory
cd Pixage- Create a Venv (Optional)
virtualenv venv- Activate Venv (Optional)
.\venv\Scripts\activate- Install Required Packages
pip install -r requirements.txt- Run Pixage and Enjoy
python pixage.py- Run (Menu Driven)
python pixage.py-
Run (Direct CLI Commands)
- JPG to PNG
pixage.py topng [FILEPATH]- PNG to JPG
pixage.py tojpg [FILEPATH]- Reduce
pixage.py reduce [FILEPATH] [FACTOR]- Enlarge
pixage.py enlarge [FILEPATH] [FACTOR]- Help
pixage.py help