Advertisement
Guest User

Untitled

a guest
Jun 11th, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var image = new Image;
  2. var colorThief;
  3. var dominantColor;
  4. image.onload = function() {
  5.     colorThief = new ColorThief();
  6.     dominantColor = colorThief.getColor(image);
  7. }
  8. image.src = "/gfx/header/6700f8a540fd7188bfc7533f3eb73f22.png";
  9. console.log(dominantColor);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement