https://github.com/vvhybe/photolab
simple Photo editor, using image processing algorithms.
https://github.com/vvhybe/photolab
algorithms canvas canvas-api canvas2d image image-processing javascript js photoeditor
Last synced: 3 months ago
JSON representation
simple Photo editor, using image processing algorithms.
- Host: GitHub
- URL: https://github.com/vvhybe/photolab
- Owner: vvhybe
- Created: 2022-11-05T00:46:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-09T17:57:15.000Z (almost 2 years ago)
- Last Synced: 2023-09-09T18:43:01.800Z (almost 2 years ago)
- Topics: algorithms, canvas, canvas-api, canvas2d, image, image-processing, javascript, js, photoeditor
- Language: JavaScript
- Homepage: https://yb7-photolab.netlify.app/
- Size: 1.5 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Photolab
## overview:
Making a small web version of GIMP and PHotoshop under the name of `Photolab`. for processing images 🌇 using range filters like: `Brightness 🔅`, `Contrast 👁️`, `Saturation 🌈`, `Grayscale `, `Sepia 🟨`, `Invert 🩻`, beside **Red** , **Green** , **Blue**  channels. with some additional magic filters that i made like `Swap` filter that swap the **__RGB__** values of every image px, and the `reflect` filter basically is just invert filter but in a swap way.## screenshots:
- ### Drop image to start:
Using drag/drop event to easily start processing your image.
- ### ready to start:
Ready to start processing your image by activating the editor sidebar after you drop the image.
- ### Processing:
The processing is used in the [`Canvas Api`](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API) with the `2D Context`, and **`Image Processing Algorithm`** to create standard range filters. with the save feature, to save your edited image in [`LocalStorage`](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage).
# Note ?:
note that the `Photolab` web app, use only filters there is no physical manipulation for the image from move, resize, rotate... to layers.
also note that the app uses the localStorage with it small capacity of storage so it will not store larg images `over 3MB` but it will restore the previews image instad.