Converting Color Spaces in JavaScript
A challenge I faced in building an image “emojifier” was that I needed to change the color spaces of values obtained using getImageData()
from RGB to HSL. I used arrays of emojis arranged by brightness and saturation, and they were …