Created
January 27, 2016 19:29
-
-
Save jacob-beltran/b886ccc11afc3b3344e7 to your computer and use it in GitHub Desktop.
Another average color experiment from http://stackoverflow.com/questions/2541481/get-average-color-of-image-via-javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getAverageRGB(imgEl) { | |
var blockSize = 5, // only visit every 5 pixels | |
defaultRGB = {r:0,g:0,b:0}, // for non-supporting envs | |
canvas = document.createElement('canvas'), | |
context = canvas.getContext && canvas.getContext('2d'), | |
data, width, height, | |
i = -4, | |
length, | |
rgb = {r:0,g:0,b:0}, | |
count = 0; | |
if (!context) { | |
return defaultRGB; | |
} | |
height = canvas.height = imgEl.naturalHeight || imgEl.offsetHeight || imgEl.height; | |
width = canvas.width = imgEl.naturalWidth || imgEl.offsetWidth || imgEl.width; | |
context.drawImage(imgEl, 0, 0); | |
try { | |
data = context.getImageData(0, 0, width, height); | |
} catch(e) { | |
/* security error, img on diff domain */ | |
return defaultRGB; | |
} | |
length = data.data.length; | |
while ( (i += blockSize * 4) < length ) { | |
++count; | |
rgb.r += data.data[i]; | |
rgb.g += data.data[i+1]; | |
rgb.b += data.data[i+2]; | |
} | |
// ~~ used to floor values | |
rgb.r = ~~(rgb.r/count); | |
rgb.g = ~~(rgb.g/count); | |
rgb.b = ~~(rgb.b/count); | |
return rgb; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment