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

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.graphics.color");
  9. dojo.require("dojo.gfx.color");
  10. dojo.deprecated("dojo.graphics.color.Color is now dojo.gfx.color.Color.", "0.5");
  11. dojo.graphics.color.Color = dojo.gfx.color.Color;
  12. dojo.graphics.color.named = dojo.gfx.color.named;
  13. dojo.graphics.color.blend = function (a, b, weight) {
  14. dojo.deprecated("dojo.graphics.color.blend is now dojo.gfx.color.blend", "0.5");
  15. return dojo.gfx.color.blend(a, b, weight);
  16. };
  17. dojo.graphics.color.blendHex = function (a, b, weight) {
  18. dojo.deprecated("dojo.graphics.color.blendHex is now dojo.gfx.color.blendHex", "0.5");
  19. return dojo.gfx.color.rgb2hex(dojo.gfx.color.blend(dojo.gfx.color.hex2rgb(a), dojo.gfx.color.hex2rgb(b), weight));
  20. };
  21. dojo.graphics.color.extractRGB = function (color) {
  22. dojo.deprecated("dojo.graphics.color.extractRGB is now dojo.gfx.color.extractRGB", "0.5");
  23. return dojo.gfx.color.extractRGB(color);
  24. };
  25. dojo.graphics.color.hex2rgb = function (hex) {
  26. dojo.deprecated("dojo.graphics.color.hex2rgb is now dojo.gfx.color.hex2rgb", "0.5");
  27. return dojo.gfx.color.hex2rgb(hex);
  28. };
  29. dojo.graphics.color.rgb2hex = function (r, g, b) {
  30. dojo.deprecated("dojo.graphics.color.rgb2hex is now dojo.gfx.color.rgb2hex", "0.5");
  31. return dojo.gfx.color.rgb2hex;
  32. };