An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        

# Photolab
![logo](src/imgs/logo.png)

## 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** ![#ff0000](https://www.iconsdb.com/icons/download/color/ff0000/circle-16.png), **Green** ![#00ff00](https://www.iconsdb.com/icons/download/color/00ff00/circle-16.png), **Blue** ![#0000ff](https://www.iconsdb.com/icons/download/color/0000ff/circle-16.png) 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.

![screenshot](src/screenshots/dropimage.png)

- ### ready to start:
Ready to start processing your image by activating the editor sidebar after you drop the image.

![screenshot](src/screenshots/readytostart.png)

- ### 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).

![screenshot](src/screenshots/processing.png)

# 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.