从 Objective-c 中的一组颜色百分比获取十六进制颜色代码的最简单方法是什么?
从一组三个 RGB 百分比中获取十六进制颜色代码的最佳方法是什么?例如:
[self getHexFromRed:0.5 Green:0.5 Blue:0.5]; // returns @"7F7F7F"
我找到了几个用于相反方向的函数(从十六进制代码创建颜色),但我似乎找不到任何简单的方法来做到这一点...
感谢您的帮助,
克里斯
What is the best way to get a hex color code from a set of three RGB percentages? For example:
[self getHexFromRed:0.5 Green:0.5 Blue:0.5]; // returns @"7F7F7F"
I've found several functions for going the other way (creating a color from a hex code), but I can't seem to find any easy way to do this...
Thanks for any help,
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以从头开始编写:
You could write it from scratch: