Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人能告诉我使用 PHP 和/或 javascript 确定网站(不是图像)中 5-6 种最常用颜色的最佳方法吗?我在网上搜索过,但我能找到的只是一些第三方解决方案(不适合我的需要),并且可以从图像中提取颜色。
如果您能以任何方式提供帮助,我将不胜感激。
作为一般策略,获取网站的屏幕截图并将其存储为无损图像格式(例如 PNG 但不是 JPEG)。然后遍历所有像素并获取它们的颜色。将结果存储在关联的数组 ( ( 'colour code' => 'count of pixels with that colour' )) 中。循环遍历该数组并找到最高计数。这些是你的颜色。
( 'colour code' => 'count of pixels with that colour' )
在线图像颜色提取器:
在线网站颜色提取器: