https://github.com/ksalekk/photo-editor
https://github.com/ksalekk/photo-editor
flatlaf gui image-processing java java-swing
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ksalekk/photo-editor
- Owner: ksalekk
- Created: 2024-05-22T12:26:14.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-29T23:07:11.000Z (about 1 year ago)
- Last Synced: 2025-01-21T09:09:26.503Z (4 months ago)
- Topics: flatlaf, gui, image-processing, java, java-swing
- Language: Java
- Homepage:
- Size: 3.74 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Photo Editor
Photo editor GUI application made with Java Swing library. The application allows to upload a jpg/png photo and compute a few photo processing operations:
- conversion to grayscale
- change brightness and contrast
- linear filtration (using predefined filters or own filter by providing a convolution filter mask)
- moving and zooming around the canvas
- undo/redo operations
- saving the photo to the jpg format file## Run
```
git clone https://github.com/ksalekk/photo-editor.git
cd ./photo-editor
java -jar photo-editor.jar
```
The app uses Java Swing and external FlatLaf library (https://www.formdev.com/flatlaf/).## Demo
Brightness and contrast adjustment
Conversion to grayscale + brightness and contrast adjustment
Conversion to grayscale + filtration with the Laplace filter
Conversion to grayscale + filtration with the highpass filter
Conversion to grayscale + filtration with the Laplace filter + brightness and contrast adjustment
