color.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:4k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.provide("dojo.gfx.color");
  9. dojo.require("dojo.lang.common");
  10. dojo.require("dojo.lang.array");
  11. dojo.gfx.color.Color = function (r, g, b, a) {
  12. if (dojo.lang.isArray(r)) {
  13. this.r = r[0];
  14. this.g = r[1];
  15. this.b = r[2];
  16. this.a = r[3] || 1;
  17. } else {
  18. if (dojo.lang.isString(r)) {
  19. var rgb = dojo.gfx.color.extractRGB(r);
  20. this.r = rgb[0];
  21. this.g = rgb[1];
  22. this.b = rgb[2];
  23. this.a = g || 1;
  24. } else {
  25. if (r instanceof dojo.gfx.color.Color) {
  26. this.r = r.r;
  27. this.b = r.b;
  28. this.g = r.g;
  29. this.a = r.a;
  30. } else {
  31. this.r = r;
  32. this.g = g;
  33. this.b = b;
  34. this.a = a;
  35. }
  36. }
  37. }
  38. };
  39. dojo.gfx.color.Color.fromArray = function (arr) {
  40. return new dojo.gfx.color.Color(arr[0], arr[1], arr[2], arr[3]);
  41. };
  42. dojo.extend(dojo.gfx.color.Color, {toRgb:function (includeAlpha) {
  43. if (includeAlpha) {
  44. return this.toRgba();
  45. } else {
  46. return [this.r, this.g, this.b];
  47. }
  48. }, toRgba:function () {
  49. return [this.r, this.g, this.b, this.a];
  50. }, toHex:function () {
  51. return dojo.gfx.color.rgb2hex(this.toRgb());
  52. }, toCss:function () {
  53. return "rgb(" + this.toRgb().join() + ")";
  54. }, toString:function () {
  55. return this.toHex();
  56. }, blend:function (color, weight) {
  57. var rgb = null;
  58. if (dojo.lang.isArray(color)) {
  59. rgb = color;
  60. } else {
  61. if (color instanceof dojo.gfx.color.Color) {
  62. rgb = color.toRgb();
  63. } else {
  64. rgb = new dojo.gfx.color.Color(color).toRgb();
  65. }
  66. }
  67. return dojo.gfx.color.blend(this.toRgb(), rgb, weight);
  68. }});
  69. dojo.gfx.color.named = {white:[255, 255, 255], black:[0, 0, 0], red:[255, 0, 0], green:[0, 255, 0], lime:[0, 255, 0], blue:[0, 0, 255], navy:[0, 0, 128], gray:[128, 128, 128], silver:[192, 192, 192]};
  70. dojo.gfx.color.blend = function (a, b, weight) {
  71. if (typeof a == "string") {
  72. return dojo.gfx.color.blendHex(a, b, weight);
  73. }
  74. if (!weight) {
  75. weight = 0;
  76. }
  77. weight = Math.min(Math.max(-1, weight), 1);
  78. weight = ((weight + 1) / 2);
  79. var c = [];
  80. for (var x = 0; x < 3; x++) {
  81. c[x] = parseInt(b[x] + ((a[x] - b[x]) * weight));
  82. }
  83. return c;
  84. };
  85. dojo.gfx.color.blendHex = function (a, b, weight) {
  86. return dojo.gfx.color.rgb2hex(dojo.gfx.color.blend(dojo.gfx.color.hex2rgb(a), dojo.gfx.color.hex2rgb(b), weight));
  87. };
  88. dojo.gfx.color.extractRGB = function (color) {
  89. var hex = "0123456789abcdef";
  90. color = color.toLowerCase();
  91. if (color.indexOf("rgb") == 0) {
  92. var matches = color.match(/rgba*((d+), *(d+), *(d+)/i);
  93. var ret = matches.splice(1, 3);
  94. return ret;
  95. } else {
  96. var colors = dojo.gfx.color.hex2rgb(color);
  97. if (colors) {
  98. return colors;
  99. } else {
  100. return dojo.gfx.color.named[color] || [255, 255, 255];
  101. }
  102. }
  103. };
  104. dojo.gfx.color.hex2rgb = function (hex) {
  105. var hexNum = "0123456789ABCDEF";
  106. var rgb = new Array(3);
  107. if (hex.indexOf("#") == 0) {
  108. hex = hex.substring(1);
  109. }
  110. hex = hex.toUpperCase();
  111. if (hex.replace(new RegExp("[" + hexNum + "]", "g"), "") != "") {
  112. return null;
  113. }
  114. if (hex.length == 3) {
  115. rgb[0] = hex.charAt(0) + hex.charAt(0);
  116. rgb[1] = hex.charAt(1) + hex.charAt(1);
  117. rgb[2] = hex.charAt(2) + hex.charAt(2);
  118. } else {
  119. rgb[0] = hex.substring(0, 2);
  120. rgb[1] = hex.substring(2, 4);
  121. rgb[2] = hex.substring(4);
  122. }
  123. for (var i = 0; i < rgb.length; i++) {
  124. rgb[i] = hexNum.indexOf(rgb[i].charAt(0)) * 16 + hexNum.indexOf(rgb[i].charAt(1));
  125. }
  126. return rgb;
  127. };
  128. dojo.gfx.color.rgb2hex = function (r, g, b) {
  129. if (dojo.lang.isArray(r)) {
  130. g = r[1] || 0;
  131. b = r[2] || 0;
  132. r = r[0] || 0;
  133. }
  134. var ret = dojo.lang.map([r, g, b], function (x) {
  135. x = new Number(x);
  136. var s = x.toString(16);
  137. while (s.length < 2) {
  138. s = "0" + s;
  139. }
  140. return s;
  141. });
  142. ret.unshift("#");
  143. return ret.join("");
  144. };