Color.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CommonUI.Display
  5. {
  6. public class Color
  7. {
  8. public const uint COLOR_NULL = 0;
  9. public const uint COLOR_WHITE = 0xffffffff;
  10. public const uint COLOR_LIGHT_GRAY = 0xa0a0a0ff;
  11. public const uint COLOR_GRAY = 0x808080ff;
  12. public const uint COLOR_DARK_GRAY = 0x404040ff;
  13. public const uint COLOR_BLACK = 0x000000ff;
  14. public const uint COLOR_RED = 0xff0000ff;
  15. public const uint COLOR_PINK = 0xffadadff;
  16. public const uint COLOR_ORANGE = 0xffc700ff;
  17. public const uint COLOR_YELLOW = 0xffff00ff;
  18. public const uint COLOR_GREEN = 0x00ff00ff;
  19. public const uint COLOR_MAGENTA = 0xff00ffff;
  20. public const uint COLOR_CYAN = 0x00ffffff;
  21. public const uint COLOR_BLUE = 0x0000ffff;
  22. static public uint toARGB(uint rgba)
  23. {
  24. uint ret = rgba >> 8;
  25. ret = (ret | ((rgba & 0x00ff) << 24));
  26. return ret;
  27. }
  28. static public uint toRGBA(uint argb)
  29. {
  30. uint ret = (argb & 0x00ffffff) << 8;
  31. ret = (ret | (argb >> 24));
  32. return ret;
  33. }
  34. static public uint toRGBA(float r, float g, float b, float a)
  35. {
  36. uint ret = 0;
  37. ret |= ((uint)(r * 255)) << 24;
  38. ret |= ((uint)(g * 255)) << 16;
  39. ret |= ((uint)(b * 255)) << 8;
  40. ret |= ((uint)(a * 255));
  41. return ret;
  42. }
  43. static public uint toRGBA(uint rgb, int a)
  44. {
  45. uint ret = 0;
  46. ret |= ((uint)(rgb & 0x00FFFFFF) << 8);
  47. ret |= ((uint)(a & 0xFF));
  48. return ret;
  49. }
  50. static public uint toRGBA(int r, int g, int b, int a)
  51. {
  52. uint ret = 0;
  53. ret |= ((uint)(r )) << 24;
  54. ret |= ((uint)(g )) << 16;
  55. ret |= ((uint)(b )) << 8;
  56. ret |= ((uint)(a ));
  57. return ret;
  58. }
  59. static public uint toARGB(float r, float g, float b, float a)
  60. {
  61. uint ret = 0;
  62. ret |= ((uint)(r * 255)) << 16;
  63. ret |= ((uint)(g * 255)) << 8;
  64. ret |= ((uint)(b * 255)) << 0;
  65. ret |= ((uint)(a * 255)) << 24;
  66. return ret;
  67. }
  68. static public uint toARGB(int r, int g, int b, int a)
  69. {
  70. uint ret = 0;
  71. ret |= ((uint)(r)) << 16;
  72. ret |= ((uint)(g)) << 8;
  73. ret |= ((uint)(b)) << 0;
  74. ret |= ((uint)(a)) << 24;
  75. return ret;
  76. }
  77. static public void toRGBAF(uint rgba, out float r, out float g, out float b, out float a)
  78. {
  79. r = ((0xff000000 & rgba) >> 24) / 255f;
  80. g = ((0x00ff0000 & rgba) >> 16) / 255f;
  81. b = ((0x0000ff00 & rgba) >> 8) / 255f;
  82. a = ((0x000000ff & rgba)) / 255f;
  83. }
  84. static public void toARGBF(uint rgba, out float r, out float g, out float b, out float a)
  85. {
  86. a = ((0xff000000 & rgba) >> 24) / 255f;
  87. r = ((0x00ff0000 & rgba) >> 16) / 255f;
  88. g = ((0x0000ff00 & rgba) >> 8) / 255f;
  89. b = ((0x000000ff & rgba)) / 255f;
  90. }
  91. static public byte[] fromRGBA(uint rgba)
  92. {
  93. return new byte[] {
  94. (byte)((0xff000000 & rgba) >> 24),
  95. (byte)((0x00ff0000 & rgba) >> 16),
  96. (byte)((0x0000ff00 & rgba) >> 8),
  97. (byte)((0x000000ff & rgba) >> 0)
  98. };
  99. }
  100. static public byte[] fromARGB(uint argb)
  101. {
  102. return new byte[] {
  103. (byte)((0x00ff0000 & argb) >> 16),
  104. (byte)((0x0000ff00 & argb) >> 8),
  105. (byte)((0x000000ff & argb) >> 0),
  106. (byte)((0xff000000 & argb) >> 24),
  107. };
  108. }
  109. }
  110. }