True Image is a web application built with Flask that provides image processing and manipulation services. Users can upload images, apply filters, resize them, and perform other image-related operations. This project is designed to showcase the power of Flask for handling image data.
Follow these steps to set up the project locally:
-
Clone the repository:
git clone https://github.com/Lanlokun/TrueImage.git
cd true-imagepython3 -m venv venvOn macOS/Linux:
source venv/bin/activateOn Windows:
venv\Scripts\activatepip install -r requirements.txtflask runThis will start the Flask development server and you can access the application at http://localhost:5000.
We welcome contributions! If you'd like to improve or add new features to True Image, follow these steps:
-
Fork the repository to your GitHub account.
-
Create a branch for your feature:
git checkout -b feature/your-feature-name
-
Make changes and commit them
git commit -m "Add feature description" -
Push to your forked repository
git push origin feature/your-feature-name -
Create a pull request for review