Windows 7 任务栏图标突出显示颜色
谁能解释当鼠标悬停在任务栏项目上时如何根据 Windows-7 任务栏等图像中的主色计算突出显示颜色? 有c#代码吗?
Can anyone explain how to calculate the highlight color based on dominant color in images like Windows-7 taskbar when mouse is over the taskbar item?
Any c# code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信它的作用是使用类似于以下的方法来获取应用程序图标中最突出的颜色: Python - 查找图像中的主要/最常见颜色
根据该信息,它会应用半透明的径向渐变色调并根据您的鼠标位置对其进行定位。朝向鼠标中心的渐变颜色更白,但中心实际上位于屏幕之外。距离实际任务栏项目越近,它变得越透明。
I believe what it does is take the most prominent color in the application's icon using a method similar to this: Python - Find dominant/most common color in an image
With that information, it then applies a translucent radial gradient hue and positions it based on your mouse location. The gradient is more white toward the center of your mouse, but the center is actually off screen. The closer to the actual taskbar item, the more transparent it becomes.