QColor

PyQt5.QtGui.QColor

Description

The QColor class provides colors based on RGB, HSV or CMYK values.

A color is normally specified in terms of RGB (red, green, and blue) components, but it is also possible to specify it in terms of HSV (hue, saturation, and value) and CMYK (cyan, magenta, yellow and black) components. In addition a color can be specified using a color name. The color name can be any of the SVG 1.0 color names.

RGB

HSV

CMYK

image-qcolor-rgb-png

image-qcolor-hsv-png

image-qcolor-cmyk-png

The QColor constructor creates the color based on RGB values. To create a QColor based on either HSV or CMYK values, use the toHsv() and toCmyk() functions respectively. These functions return a copy of the color using the desired format. In addition the static fromRgb(), fromHsv() and fromCmyk() functions create colors from the specified values. Alternatively, a color can be converted to any of the three formats using the convertTo() function (returning a copy of the color in the desired format), or any of the setRgb(), setHsv() and setCmyk() functions altering this color’s format. The spec() function tells how the color was specified.

A color can be set by passing an RGB string (such as “#112233”), or an ARGB string (such as “#ff112233”) or a color name (such as “blue”), to the setNamedColor() function. The color names are taken from the SVG 1.0 color names. The name() function returns the name of the color in the format “#RRGGBB”. Colors can also be set using setRgb(), setHsv() and setCmyk(). To get a lighter or darker color use the lighter() and darker() functions respectively.

The isValid() function indicates whether a QColor is legal at all. For example, a RGB color with RGB values out of range is illegal. For performance reasons, QColor mostly disregards illegal colors, and for that reason, the result of using an invalid color is undefined.

The color components can be retrieved individually, e.g with red(), hue() and cyan(). The values of the color components can also be retrieved in one go using the getRgb(), getHsv() and getCmyk() functions. Using the RGB color model, the color components can in addition be accessed with rgb().

There are several related non-members: QRgb is a typdef for an unsigned int representing the RGB value triplet (r, g, b). Note that it also can hold a value for the alpha-channel (for more information, see the Alpha-Blended Drawing section). The qRed(), qBlue() and qGreen() functions return the respective component of the given QRgb value, while the qRgb() and qRgba() functions create and return the QRgb triplet based on the given component values. Finally, the qAlpha() function returns the alpha component of the provided QRgb, and the qGray() function calculates and return a gray value based on the given value.

QColor is platform and device independent. The QColormap class maps the color to the hardware.

For more information about painting in general, see the Paint System documentation.

Integer vs. Floating Point Precision

QColor supports floating point precision and provides floating point versions of all the color components functions, e.g. getRgbF(), hueF() and fromCmykF(). Note that since the components are stored using 16-bit integers, there might be minor deviations between the values set using, for example, setRgbF() and the values returned by the getRgbF() function due to rounding.

While the integer based functions take values in the range 0-255 (except hue() which must have values within the range 0-359), the floating point functions accept values in the range 0.0 - 1.0.

Alpha-Blended Drawing

QColor also support alpha-blended outlining and filling. The alpha channel of a color specifies the transparency effect, 0 represents a fully transparent color, while 255 represents a fully opaque color. For example:

# // Specify semi-transparent red
# painter.setBrush(QColor(255, 0, 0, 127));
# painter.drawRect(0, 0, width()/2, height());

# // Specify semi-transparent blue
# painter.setBrush(QColor(0, 0, 255, 127));
# painter.drawRect(0, 0, width(), height()/2);

The code above produces the following output:

../../_images/alphafill.png

The alpha channel of a color can be retrieved and set using the alpha() and setAlpha() functions if its value is an integer, and alphaF() and setAlphaF() if its value is qreal (double). By default, the alpha-channel is set to 255 (opaque). To retrieve and set all the RGB color components (including the alpha-channel) in one go, use the rgba() and setRgba() functions.

Predefined Colors

There are 20 predefined QColors described by the GlobalColor enum, including black, white, primary and secondary colors, darker versions of these colors and three shades of gray. QColor also recognizes a variety of color names; the static colorNames() function returns a QStringList color names that QColor knows about.

../../_images/qt-colors.png

Additionally, the color0, color1 and transparent colors are used for special purposes.

color0 (zero pixel value) and color1 (non-zero pixel value) are special colors for drawing in QBitmaps. Painting with color0 sets the bitmap bits to 0 (transparent; i.e., background), and painting with color1 sets the bits to 1 (opaque; i.e., foreground).

transparent is used to indicate a transparent pixel. When painting with this value, a pixel value will be used that is appropriate for the underlying pixel format in use.

The HSV Color Model

The RGB model is hardware-oriented. Its representation is close to what most monitors show. In contrast, HSV represents color in a way more suited to the human perception of color. For example, the relationships “stronger than”, “darker than”, and “the opposite of” are easily expressed in HSV but are much harder to express in RGB.

HSV, like RGB, has three components:

  • H, for hue, is in the range 0 to 359 if the color is chromatic (not gray), or meaningless if it is gray. It represents degrees on the color wheel familiar to most people. Red is 0 (degrees), green is 120, and blue is 240.

    image-qcolor-hue-png

  • S, for saturation, is in the range 0 to 255, and the bigger it is, the stronger the color is. Grayish colors have saturation near 0; very strong colors have saturation near 255.

    image-qcolor-saturation-png

  • V, for value, is in the range 0 to 255 and represents lightness or brightness of the color. 0 is black; 255 is as far from black as possible.

    image-qcolor-value-png

Here are some examples: pure red is H=0, S=255, V=255; a dark red, moving slightly towards the magenta, could be H=350 (equivalent to -10), S=255, V=180; a grayish light red could have H about 0 (say 350-359 or 0-10), S about 50-100, and S=255.

Qt returns a hue value of -1 for achromatic colors. If you pass a hue value that is too large, Qt forces it into range. Hue 360 or 720 is treated as 0; hue 540 is treated as 180.

In addition to the standard HSV model, Qt provides an alpha-channel to feature alpha-blended drawing.

The HSL Color Model

HSL is similar to HSV, however instead of the Value parameter, HSL specifies a Lightness parameter.

The CMYK Color Model

While the RGB and HSV color models are used for display on computer monitors, the CMYK model is used in the four-color printing process of printing presses and some hard-copy devices.

CMYK has four components, all in the range 0-255: cyan (C), magenta (M), yellow (Y) and black (K). Cyan, magenta and yellow are called subtractive colors; the CMYK color model creates color by starting with a white surface and then subtracting color by applying the appropriate components. While combining cyan, magenta and yellow gives the color black, subtracting one or more will yield any other color. When combined in various percentages, these three colors can create the entire spectrum of colors.

Mixing 100 percent of cyan, magenta and yellow does produce black, but the result is unsatisfactory since it wastes ink, increases drying time, and gives a muddy colour when printing. For that reason, black is added in professional printing to provide a solid black tone; hence the term ‘four color process’.

In addition to the standard CMYK model, Qt provides an alpha-channel to feature alpha-blended drawing.

See also

QPalette, QBrush.

Enums

NameFormat

TODO

Member

Value

Description

HexArgb

TODO

TODO

HexRgb

TODO

TODO


Spec

The type of color specified, either RGB, HSV, CMYK or HSL.

See also

spec(), convertTo().

Member

Value

Description

Cmyk

TODO

TODO

ExtendedRgb

TODO

TODO

Hsl

TODO

TODO

Hsv

TODO

TODO

Invalid

TODO

TODO

Rgb

TODO

TODO

Methods

__init__()

TODO


__init__(GlobalColor)

TODO


__init__(int)

TODO


__init__(QRgba64)

TODO


__init__(Any)

TODO


__init__(str)

TODO


__init__(Union[QColor, GlobalColor])

TODO


__init__(int, int, int, alpha: int = 255)

TODO


alpha() → int

See also

setAlpha().


alphaF() → float

See also

setAlphaF().


black() → int

TODO


blackF() → float

TODO


blue() → int

See also

setBlue().


blueF() → float

See also

setBlueF().


@staticmethod
colorNames() → List[str]

TODO


convertTo(Spec) → QColor

TODO


cyan() → int

TODO


cyanF() → float

TODO


darker(factor: int = 200) → QColor

TODO


__eq__(Union[QColor, GlobalColor]) → bool

TODO


@staticmethod
fromCmyk(int, int, int, int, alpha: int = 255) → QColor

TODO


@staticmethod
fromCmykF(float, float, float, float, alpha: float = 1) → QColor

TODO


@staticmethod
fromHsl(int, int, int, alpha: int = 255) → QColor

TODO


@staticmethod
fromHslF(float, float, float, alpha: float = 1) → QColor

TODO


@staticmethod
fromHsv(int, int, int, alpha: int = 255) → QColor

TODO


@staticmethod
fromHsvF(float, float, float, alpha: float = 1) → QColor

TODO


@staticmethod
fromRgb(int) → QColor

TODO


@staticmethod
fromRgb(int, int, int, alpha: int = 255) → QColor

TODO


@staticmethod
fromRgba(int) → QColor

TODO


@staticmethod
fromRgba64(QRgba64) → QColor

TODO


@staticmethod
fromRgba64(int, int, int, alpha: int = 65535) → QColor

TODO


@staticmethod
fromRgbF(float, float, float, alpha: float = 1) → QColor

TODO


getCmyk() → (int, int, int, int, int)

TODO


getCmykF() → (float, float, float, float, float)

TODO


getHsl() → (int, int, int, int)

TODO


getHslF() → (float, float, float, float)

TODO


getHsv() → (int, int, int, int)

TODO


getHsvF() → (float, float, float, float)

TODO


getRgb() → (int, int, int, int)

TODO


getRgbF() → (float, float, float, float)

TODO


green() → int

See also

setGreen().


greenF() → float

See also

setGreenF().


hslHue() → int

TODO


hslHueF() → float

TODO


hslSaturation() → int

TODO


hslSaturationF() → float

TODO


hsvHue() → int

TODO


hsvHueF() → float

TODO


hsvSaturation() → int

TODO


hsvSaturationF() → float

TODO


hue() → int

TODO


hueF() → float

TODO


isValid() → bool

TODO


@staticmethod
isValidColor(str) → bool

TODO


lighter(factor: int = 150) → QColor

TODO


lightness() → int

TODO


lightnessF() → float

TODO


magenta() → int

TODO


magentaF() → float

TODO


name() → str

TODO


name(NameFormat) → str

TODO


__ne__(Union[QColor, GlobalColor]) → bool

TODO


red() → int

See also

setRed().


redF() → float

See also

setRedF().


rgb() → int

See also

setRgb().


rgba() → int

See also

setRgba().


rgba64() → QRgba64

TODO


saturation() → int

TODO


saturationF() → float

TODO


setAlpha(int)

See also

alpha().


setAlphaF(float)

See also

alphaF().


setBlue(int)

See also

blue().


setBlueF(float)

See also

blueF().


setCmyk(int, int, int, int, alpha: int = 255)

TODO


setCmykF(float, float, float, float, alpha: float = 1)

TODO


setGreen(int)

See also

green().


setGreenF(float)

See also

greenF().


setHsl(int, int, int, alpha: int = 255)

TODO


setHslF(float, float, float, alpha: float = 1)

TODO


setHsv(int, int, int, alpha: int = 255)

See also

hsv().


setHsvF(float, float, float, alpha: float = 1)

TODO


setNamedColor(str)

TODO


setRed(int)

See also

red().


setRedF(float)

See also

redF().


setRgb(int)

TODO


setRgb(int, int, int, alpha: int = 255)

See also

rgb().


setRgba(int)

See also

rgba().


setRgba64(QRgba64)

TODO


setRgbF(float, float, float, alpha: float = 1)

TODO


spec() → Spec

TODO


toCmyk() → QColor

TODO


toExtendedRgb() → QColor

TODO


toHsl() → QColor

TODO


toHsv() → QColor

TODO


toRgb() → QColor

TODO


value() → int

TODO


valueF() → float

TODO


yellow() → int

TODO


yellowF() → float

TODO