I have a problem:
Browsers do not support showing images in CMYK mode and the client see some really sharp and different colors in his uploaded image while the colors is alright.
solve this problem i think its a good idea to convert an CMYK image to a RGB mode image in client-side with using JavaScript language.
based on my search result about converting image in CMYK to RGB mode with using JavaScript, required image to be imported to a canvas and makes every color number in each pixel convert CMYK to RGB color number with using like this library ColorConverter and finally i have a canvas with RGB mode
this what i am thinking, now my question is if this solution is right ? and if there is any better way to do the job ? please give me your ideas.