🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Image-color-picker is a simple angular component for picking the specific color from image. Use the image-color-picker to select a color and get the html color code of selected pixel. Also you get the Preview of selected pixel,HEX value and RGBA value.

Plugins

Documentation

Image Color Picker Using Angular

Image-color-picker is a simple component for picking the specific color from image. Use the image-color-picker to select a color and get the html color code of selected pixel. Also you get the Preview of selected pixel,HEX value and RGBA value.

To preview demo of image-color-picker project, Click here

Using the complete angular project

Download the image-color-picker folder and install the required packages and run the application.

Installing

 >npm install 

Run server

 >ng serve 

STEPS:

1] Select an Image

Select the image by clicking 'Choose File'

2] Pick a Color

Click anywhere on the image and you will get that pixel color

3] Preview

By clicking on image you can see the current pixel color in the preview box

4] Copy Color Code

By clicking on image you will get RGBA and HEX values in textboxes, you can copy any color code and use it in your application

@Output Decorator

@Output has been used to provide user with required output. For this i have used EventEmitter, whenever some event will be called user will get result.

Below method will give HEX and RGBA values.

getcolval(event) { console.log(event); }

outputColor is the output event name I have used.

<app-imgcol (outputColor)="getcolval($event)"></app-imgcol>

You May Also Like