DrawingTidbits.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * DrawingTidbits.h
  3.  *****************************************************************************
  4.  * Copyright (C) 2001 VideoLAN
  5.  * $Id: DrawingTidbits.h 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Tony Castley <tcastley@mail.powerup.com.au>
  8.  *          Stephan Aßmus <stippi@yellowbites.com>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #ifndef __DRAWING_TIBITS__
  25. #define __DRAWING_TIBITS__
  26. #include <GraphicsDefs.h>
  27. rgb_color ShiftColor(rgb_color , float );
  28. bool operator==(const rgb_color &, const rgb_color &);
  29. bool operator!=(const rgb_color &, const rgb_color &);
  30. inline rgb_color
  31. Color(int32 r, int32 g, int32 b, int32 alpha = 255)
  32. {
  33. rgb_color result;
  34. result.red = r;
  35. result.green = g;
  36. result.blue = b;
  37. result.alpha = alpha;
  38. return result;
  39. }
  40. const rgb_color kWhite = { 255, 255, 255, 255};
  41. const rgb_color kBlack = { 0, 0, 0, 255};
  42. const float kDarkness = 1.06;
  43. const float kDimLevel = 0.6;
  44. void ReplaceColor(BBitmap *bitmap, rgb_color from, rgb_color to);
  45. void ReplaceTransparentColor(BBitmap *bitmap, rgb_color with);
  46. // function can be used to scale the upper left part of
  47. // a bitmap to fill the entire bitmap, ie fromWidth
  48. // and fromHeight must be smaller or equal to the bitmaps size!
  49. // only supported colorspaces are B_RGB32 and B_RGBA32
  50. status_t scale_bitmap( BBitmap* bitmap,
  51.    uint32 fromWidth, uint32 fromHeight );
  52. // bitmaps need to be the same size, or this function will fail
  53. // currently supported conversions:
  54. //   B_YCbCr422 -> B_RGB32
  55. //   B_RGB32 -> B_RGB32
  56. //   B_RGB16 -> B_RGB32
  57. // not yet implemented conversions:
  58. //   B_YCbCr420 -> B_RGB32
  59. //   B_YUV422 -> B_RGB32
  60. status_t convert_bitmap(BBitmap* inBitmap, BBitmap* outBitmap);
  61. // dims bitmap (in place) by finding the distance of
  62. // the color at each pixel to the provided "center" color
  63. // and shortens that distance by dimLevel
  64. //   (dimLevel < 1 -> less contrast)
  65. //   (dimLevel > 1 -> more contrast)
  66. //   (dimLevel < 0 -> inverted colors)
  67. // currently supported colorspaces:
  68. //   B_RGB32
  69. //   B_RGBA32
  70. //   B_CMAP8
  71. status_t dim_bitmap(BBitmap* bitmap, rgb_color center,
  72. float dimLevel);
  73. rgb_color dimmed_color_cmap8(rgb_color color, rgb_color center,
  74.  float dimLevel);
  75. #endif // __DRAWING_TIBITS__