Possible to change an image color palette using javascript? -
i've seen questions here none of them provide answer.
what need javascript (or perhaps kind of plugin using php/apache) can find colors in image , replace them closest color custom palette, in case nes palette. how can done?
yes, can done using javascript, following these steps :
- load image canvas
- get imagedata (which array of rgba values each pixel)
- loop through array , convert rgba values hex values
- convert resulting color nearest color in pallette
- convert new colors rgba values
- restore new imagedata array canvas
Comments
Post a Comment