PyPica is a command-line image processing tool that supports various operations. It's designed with simplicity and ease of use in mind, providing a variety of essential image processing functions through an intuitive command-line interface.
- Display essential information about an image
- Crop an image to specific dimensions
- Crop an image to its non-empty content
- Generate a palette image from the image
- Adjust the color channels (red, green, blue) by given coefficients
- Invert the color channels of the image
PyPica requires Python 3.6+ to run.
Clone the repository:
git clone https://github.com/kingmob23/PyPica.gitNavigate to the PyPica directory:
cd PyPicaInstall the required dependencies:
pip install -r requirements.txtTo use PyPica, navigate to the directory containing the image you want to process and run the app.py script with the desired options.
Here's an example of how to display essential information about an image:
python3 app.py your_image.png --infoYou can find more details about other options by running:
python3 app.py --helpThis project is licensed under the terms of the MIT License.