qrgb.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QRGB_H
  40. #define QRGB_H
  41. #include <QtCore/qglobal.h>
  42. #include <QtCore/qprocessordetection.h>
  43. QT_BEGIN_NAMESPACE
  44. typedef unsigned int QRgb; // RGB triplet
  45. // non-namespaced Qt global variable
  46. const Q_DECL_UNUSED QRgb RGB_MASK = 0x00ffffff; // masks RGB values
  47. inline Q_DECL_CONSTEXPR int qRed(QRgb rgb) // get red part of RGB
  48. { return ((rgb >> 16) & 0xff); }
  49. inline Q_DECL_CONSTEXPR int qGreen(QRgb rgb) // get green part of RGB
  50. { return ((rgb >> 8) & 0xff); }
  51. inline Q_DECL_CONSTEXPR int qBlue(QRgb rgb) // get blue part of RGB
  52. { return (rgb & 0xff); }
  53. inline Q_DECL_CONSTEXPR int qAlpha(QRgb rgb) // get alpha part of RGBA
  54. { return rgb >> 24; }
  55. inline Q_DECL_CONSTEXPR QRgb qRgb(int r, int g, int b)// set RGB value
  56. { return (0xffu << 24) | ((r & 0xffu) << 16) | ((g & 0xffu) << 8) | (b & 0xffu); }
  57. inline Q_DECL_CONSTEXPR QRgb qRgba(int r, int g, int b, int a)// set RGBA value
  58. { return ((a & 0xffu) << 24) | ((r & 0xffu) << 16) | ((g & 0xffu) << 8) | (b & 0xffu); }
  59. inline Q_DECL_CONSTEXPR int qGray(int r, int g, int b)// convert R,G,B to gray 0..255
  60. { return (r*11+g*16+b*5)/32; }
  61. inline Q_DECL_CONSTEXPR int qGray(QRgb rgb) // convert RGB to gray 0..255
  62. { return qGray(qRed(rgb), qGreen(rgb), qBlue(rgb)); }
  63. inline Q_DECL_CONSTEXPR bool qIsGray(QRgb rgb)
  64. { return qRed(rgb) == qGreen(rgb) && qRed(rgb) == qBlue(rgb); }
  65. inline Q_DECL_RELAXED_CONSTEXPR QRgb qPremultiply(QRgb x)
  66. {
  67. const uint a = qAlpha(x);
  68. uint t = (x & 0xff00ff) * a;
  69. t = (t + ((t >> 8) & 0xff00ff) + 0x800080) >> 8;
  70. t &= 0xff00ff;
  71. x = ((x >> 8) & 0xff) * a;
  72. x = (x + ((x >> 8) & 0xff) + 0x80);
  73. x &= 0xff00;
  74. return x | t | (a << 24);
  75. }
  76. Q_GUI_EXPORT extern const uint qt_inv_premul_factor[];
  77. inline QRgb qUnpremultiply(QRgb p)
  78. {
  79. const uint alpha = qAlpha(p);
  80. // Alpha 255 and 0 are the two most common values, which makes them beneficial to short-cut.
  81. if (alpha == 255)
  82. return p;
  83. if (alpha == 0)
  84. return 0;
  85. // (p*(0x00ff00ff/alpha)) >> 16 == (p*255)/alpha for all p and alpha <= 256.
  86. const uint invAlpha = qt_inv_premul_factor[alpha];
  87. // We add 0x8000 to get even rounding. The rounding also ensures that qPremultiply(qUnpremultiply(p)) == p for all p.
  88. return qRgba((qRed(p)*invAlpha + 0x8000)>>16, (qGreen(p)*invAlpha + 0x8000)>>16, (qBlue(p)*invAlpha + 0x8000)>>16, alpha);
  89. }
  90. QT_END_NAMESPACE
  91. #endif // QRGB_H