rbg 或 hex 来收集所选颜色?
我提交了不同颜色的六角形。目前我使用 rgb2hex 函数,所以 或 都可以。 目标是我有一组需要使用的颜色,并且我希望现有颜色十六进制或 RGB 更改为数组或其他颜色最接近的颜色。
基本上,我有大约 15 个颜色值,我基本上想要一个函数,它接受 rgb 并查看它最接近(数组的)哪一个
i have a submission of different color hexs. At the moment im using a rgb2hex function so either or works.
The goal is I have a set of colors I need to use, and I want the existing colors hex or rgb to change to the closest color of an array or something.
basically, I have about 15 color values, and I want basically a function that takes the rgb and see which one its closest to (of an array)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:你是否曾经用谷歌搜索过一些东西却找到了自己的答案?这是一个可能更有用的函数,因为它是独立的:
这是原始函数:
另外,如果您想生成 $colorArray 变量
Edit: Have you ever googled around for something only to find your own answer? Here is a function that might be more useful insofar as it's self-contained:
Here's the original:
also, if you want to generate the $colorArray variable
如果我理解正确的话,您想将任意十六进制颜色近似为预定义的颜色吗?
创建一个函数来分割 RGB、输入和矩阵。
问候,
//t
If I understand you correctly you want to approximate an arbitrarily hex-color to pre-defined?
Make a function that chops up r-g-b, both the input and your matrix.
regards,
//t