QColor Class Reference

[ QtGui module]

The QColor class provides colors based on RGB, HSV or CMYK 值。 更多...

类型

方法

Static Methods

Special Methods


详细描述

This class can be pickled.

A Qt.GlobalColor may be used whenever a QColor is expected.

The QColor class provides colors based on RGB, HSV or CMYK 值。

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

The QColor constructor creates the color based on RGB values. To create a QColor based on either HSV or CMYK values, use the toHsv () 和 toCmyk () functions respectively. These functions return a copy of the color using the desired format. In addition the static fromRgb (), fromHsv () 和 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 () 和 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 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 () 和 setCmyk (). To get a lighter or darker color use the lighter () 和 darker () functions 分别。

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 () 和 cyan (). The values of the color components can also be retrieved in one go using the getRgb (), getHsv () 和 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 的绘制 section). The qRed (), qBlue () 和 qGreen () functions return the respective component of the given QRgb value, while the qRgb () 和 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 ,和 qGray () function calculates and return a gray value based on the given value.

QColor 独立于平台和设备。 QColormap class maps the color to the hardware.

For more information about painting in general, see the 描绘系统 文档编制。

整数 vs 浮点数的精度

QColor supports floating point precision and provides floating point versions of all the color components functions, e.g. getRgbF (), hueF () 和 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 的绘制

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:

Alpha-blended drawing is supported on Windows, Mac OS X, and on X11 systems that have the X Render extension installed.

The alpha channel of a color can be retrieved and set using the alpha () 和 setAlpha () functions if its value is an integer, and alphaF () 和 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 () 和 setRgba () 函数。

预定义的颜色

There are 20 predefined QColors described by the Qt.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 () 函数返回 QStringList color names that QColor knows about.

Qt Colors

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

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

Qt.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.

HSV 颜色模型

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:

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 .

HSL 颜色模型

HSL is similar to HSV. Instead of value parameter from HSV, HSL has the lightness parameter. The lightness parameter goes from black to color and from color to white. If you go outside at the night its black or dark gray. At day its colorful but if you look in a really strong light a things they are going to white and wash out.

CMYK 颜色模型

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 .


类型文档编制

QColor.Spec

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

常量
QColor.Rgb 1
QColor.Hsv 2
QColor.Cmyk 3
QColor.Hsl 4
QColor.Invalid 0

另请参阅 spec () 和 convertTo ().


方法文档编制

QColor.__init__ ( self , Qt.GlobalColor   color )

Constructs an invalid color with the RGB value (0, 0, 0). An invalid color is a color that is not properly set up for the underlying window system.

The alpha value of an invalid color is unspecified.

另请参阅 isValid ().

QColor.__init__ ( self , int  rgb )

Constructs a color with the RGB value r , g , b , and the alpha-channel (transparency) value of a .

The color is left invalid if any of the arguments are 无效的。

另请参阅 setRgba () 和 isValid ().

QColor.__init__ ( self , QVariant  variant )

构造颜色采用值 color . The alpha component is ignored and set to solid.

另请参阅 fromRgb () 和 isValid ().

QColor.__init__ ( self )

Constructs a named color in the same way as setNamedColor () 使用给定 name .

The color is left invalid if the name 不能是 parsed.

另请参阅 setNamedColor (), name (),和 isValid ().

QColor.__init__ ( self , int  r , int  g , int  b , int  alpha  = 255)

Constructs a named color in the same way as setNamedColor () 使用给定 name .

The color is left invalid if the name 不能是 parsed.

另请参阅 setNamedColor (), name (),和 isValid ().

QColor.__init__ ( self , QString  aname )

Constructs a color that is a copy of color .

另请参阅 isValid ().

QColor.__init__ ( self , QColor   acolor )

int QColor.alpha ( self )

返回此颜色的 Alpha 颜色分量。

另请参阅 setAlpha (), alphaF (),和 融合 Alpha 的绘制 .

float QColor.alphaF ( self )

返回此颜色的 Alpha 颜色分量。

另请参阅 setAlphaF (), alpha (),和 融合 Alpha 的绘制 .

int QColor.black ( self )

Returns the black color component of this color.

另请参阅 blackF (), getCmyk (),和 CMYK 颜色模型 .

float QColor.blackF ( self )

Returns the black color component of this color.

另请参阅 black (), getCmykF (),和 CMYK 颜色模型 .

int QColor.blue ( self )

Returns the blue color component of this color.

另请参阅 setBlue (), blueF (),和 getRgb ().

float QColor.blueF ( self )

Returns the blue color component of this color.

另请参阅 setBlueF (), blue (),和 getRgbF ().

QStringList QColor.colorNames ()

返回 QStringList containing the color names Qt knows about.

另请参阅 预定义的颜色 .

QColor QColor.convertTo ( self , Spec   colorSpec )

Creates a copy of this color in the format specified by colorSpec .

另请参阅 spec (), toCmyk (), toHsv (), toRgb (),和 isValid ().

int QColor.cyan ( self )

Returns the cyan color component of this color.

另请参阅 cyanF (), getCmyk (),和 CMYK 颜色模型 .

float QColor.cyanF ( self )

Returns the cyan color component of this color.

另请参阅 cyan (), getCmykF (),和 CMYK 颜色模型 .

QColor QColor.dark ( self , int  factor  = 200)

QColor QColor.darker ( self , int  factor  = 200)

Returns a darker (or lighter) color, but does not change this 对象。

factor is greater than 100, this functions returns a darker color. Setting factor to 300 returns a color that has one-third the brightness. If the factor is less than 100, the return color is lighter, but we recommend using the lighter () function for this purpose. If the factor is 0 or negative, the return value is unspecified.

The function converts the current RGB color to HSV, divides the value (V) component by factor and converts the color back to RGB.

该函数在 Qt 4.3 引入。

另请参阅 lighter () 和 isValid ().

QColor QColor.fromCmyk (int  c , int  m , int  y , int  k , int  alpha  = 255)

Static convenience function that returns a QColor constructed from the given CMYK color 值: c (cyan), m (magenta), y (yellow), k (black), and a (alpha-channel, i.e. transparency).

All the values must be in the range 0-255.

另请参阅 toCmyk (), fromCmykF (), isValid (),和 CMYK 颜色模型 .

QColor QColor.fromCmykF (float  c , float  m , float  y , float  k , float  alpha  = 1)

这是重载函数。

Static convenience function that returns a QColor constructed from the given CMYK color 值: c (cyan), m (magenta), y (yellow), k (black), and a (alpha-channel, i.e. transparency).

All the values must be in the range 0.0-1.0.

另请参阅 toCmyk (), fromCmyk (), isValid (),和 CMYK 颜色模型 .

QColor QColor.fromHsl (int  h , int  s , int  l , int  alpha  = 255)

Static convenience function that returns a QColor constructed from the HSV color values, h (hue), s (saturation), l (lightness), and a (alpha-channel, i.e. transparency).

s , l ,和 a must all be in the range 0-255; the value of h must be in the range 0-359.

该函数在 Qt 4.6 引入。

另请参阅 toHsl (), fromHslF (),和 isValid ().

QColor QColor.fromHslF (float  h , float  s , float  l , float  alpha  = 1)

这是重载函数。

Static convenience function that returns a QColor constructed from the HSV color values, h (hue), s (saturation), l (lightness), and a (alpha-channel, i.e. transparency).

All the values must be in the range 0.0-1.0.

该函数在 Qt 4.6 引入。

另请参阅 toHsl (), fromHsl (),和 isValid ().

QColor QColor.fromHsv (int  h , int  s , int  v , int  alpha  = 255)

Static convenience function that returns a QColor constructed from the HSV color values, h (hue), s (saturation), v (value), and a (alpha-channel, i.e. transparency).

s , v ,和 a must all be in the range 0-255; the value of h must be in the range 0-359.

另请参阅 toHsv (), fromHsvF (), isValid (),和 HSV 颜色模型 .

QColor QColor.fromHsvF (float  h , float  s , float  v , float  alpha  = 1)

这是重载函数。

Static convenience function that returns a QColor constructed from the HSV color values, h (hue), s (saturation), v (value), and a (alpha-channel, i.e. transparency).

All the values must be in the range 0.0-1.0.

另请参阅 toHsv (), fromHsv (), isValid (),和 HSV 颜色模型 .

QColor QColor.fromRgb (int  rgb )

Static convenience function that returns a QColor constructed from the given QRgb value rgb .

The alpha component of rgb is ignored (i.e. it is automatically set to 255), use the fromRgba () function to include the alpha-channel specified by the given QRgb 值。

另请参阅 fromRgba (), fromRgbF (), toRgb (),和 isValid ().

QColor QColor.fromRgb (int  r , int  g , int  b , int  alpha  = 255)

Static convenience function that returns a QColor constructed from the RGB color values, r (red), g (green), b (blue), and a (alpha-channel, i.e. transparency).

All the values must be in the range 0-255.

另请参阅 toRgb (), fromRgbF (),和 isValid ().

QColor QColor.fromRgba (int  rgba )

Static convenience function that returns a QColor constructed from the given QRgb value rgba .

不像 fromRgb () function, the alpha-channel specified by the given QRgb value is included.

另请参阅 fromRgb () 和 isValid ().

QColor QColor.fromRgbF (float  r , float  g , float  b , float  alpha  = 1)

Static convenience function that returns a QColor constructed from the RGB color values, r (red), g (green), b (blue), and a (alpha-channel, i.e. transparency).

All the values must be in the range 0.0-1.0.

另请参阅 fromRgb (), toRgb (),和 isValid ().

(int  c , int  m , int  y , int  k , int  alpha ) QColor.getCmyk ( self )

Sets the contents pointed to by c , m , y , k ,和 a , to the cyan, magenta, yellow, black, and alpha-channel (transparency) components of the color's CMYK 值。

These components can be retrieved individually using the cyan (), magenta (), yellow (), black () 和 alpha () 函数。

另请参阅 setCmyk () 和 The CMYK Color Model .

(float  c , float  m , float  y , float  k , float  alpha ) QColor.getCmykF ( self )

Sets the contents pointed to by c , m , y , k ,和 a , to the cyan, magenta, yellow, black, and alpha-channel (transparency) components of the color's CMYK 值。

These components can be retrieved individually using the cyanF (), magentaF (), yellowF (), blackF () 和 alphaF () 函数。

另请参阅 setCmykF () and The CMYK Color Model .

(int  h , int  s , int  l , int  alpha ) QColor.getHsl ( self )

Sets the contents pointed to by h , s , l , and a , to the hue, saturation, lightness, and alpha-channel (transparency) components of the color's HSL value.

These components can be retrieved individually using the hueHsl(), saturationHsl(), lightness () 和 alpha () 函数。

该函数在 Qt 4.6 引入。

另请参阅 setHsl ().

(float  h , float  s , float  l , float  alpha ) QColor.getHslF ( self )

Sets the contents pointed to by h , s , l , and a , to the hue, saturation, lightness, and alpha-channel (transparency) components of the color's HSL value.

These components can be retrieved individually using the hueHslF(), saturationHslF(), lightnessF () 和 alphaF () 函数。

该函数在 Qt 4.6 引入。

另请参阅 setHsl ().

(int  h , int  s , int  v , int  alpha ) QColor.getHsv ( self )

Sets the contents pointed to by h , s , v , and a , to the hue, saturation, value, and alpha-channel (transparency) components of the color's HSV value.

These components can be retrieved individually using the hue (), saturation (), value () 和 alpha () 函数。

另请参阅 setHsv () 和 The HSV Color Model .

(float  h , float  s , float  v , float  alpha ) QColor.getHsvF ( self )

Sets the contents pointed to by h , s , v , and a , to the hue, saturation, value, and alpha-channel (transparency) components of the color's HSV value.

These components can be retrieved individually using the hueF (), saturationF (), valueF () 和 alphaF () 函数。

另请参阅 setHsv () 和 The HSV Color Model .

(int  r , int  g , int  b , int  alpha ) QColor.getRgb ( self )

Sets the contents pointed to by r , g , b , and a , to the red, green, blue, and alpha-channel (transparency) components of the color's RGB value.

These components can be retrieved individually using the red (), green (), blue () 和 alpha () 函数。

另请参阅 rgb () 和 setRgb ().

(float  r , float  g , float  b , float  alpha ) QColor.getRgbF ( self )

Sets the contents pointed to by r , g , b , and a , to the red, green, blue, and alpha-channel (transparency) components of the color's RGB value.

These components can be retrieved individually using the redF (), greenF (), blueF () 和 alphaF () 函数。

另请参阅 rgb () 和 setRgb ().

int QColor.green ( self )

Returns the green color component of this color.

另请参阅 setGreen (), greenF (),和 getRgb ().

float QColor.greenF ( self )

Returns the green color component of this color.

另请参阅 setGreenF (), green (),和 getRgbF ().

int QColor.hslHue ( self )

Returns the hue color component of this color.

该函数在 Qt 4.6 引入。

另请参阅 getHslF () 和 getHsl ().

float QColor.hslHueF ( self )

Returns the hue color component of this color.

该函数在 Qt 4.6 引入。

另请参阅 hue () 和 getHslF ().

int QColor.hslSaturation ( self )

Returns the saturation color component of this color.

该函数在 Qt 4.6 引入。

另请参阅 saturationF (), getHsv (),和 HSV 颜色模型 .

float QColor.hslSaturationF ( self )

Returns the saturation color component of this color.

该函数在 Qt 4.6 引入。

另请参阅 saturationF () 和 getHslF ().

int QColor.hsvHue ( self )

Returns the hue color component of this color.

另请参阅 hueF (), getHsv (),和 HSV 颜色模型 .

float QColor.hsvHueF ( self )

Returns the hue color component of this color.

另请参阅 hue (), getHsvF (),和 HSV 颜色模型 .

int QColor.hsvSaturation ( self )

Returns the saturation color component of this color.

另请参阅 saturationF (), getHsv (),和 HSV 颜色模型 .

float QColor.hsvSaturationF ( self )

Returns the saturation color component of this color.

另请参阅 saturation (), getHsvF (),和 HSV 颜色模型 .

int QColor.hue ( self )

Returns the hue color component of this color.

The color is implicitly converted to HSV.

另请参阅 hsvHue (), hueF (), getHsv (),和 HSV 颜色模型 .

float QColor.hueF ( self )

Returns the hue color component of this color.

The color is implicitly converted to HSV.

另请参阅 hsvHueF (), hue (), getHsvF (),和 HSV 颜色模型 .

bool QColor.isValid ( self )

Returns true if the color is valid; otherwise returns false.

bool QColor.isValidColor (QString  name )

返回 true 若 name is a valid color name and can be used to construct a valid QColor 对象, otherwise returns false.

It uses the same algorithm used in setNamedColor ().

该函数在 Qt 4.7 引入。

另请参阅 setNamedColor ().

QColor QColor.light ( self , int  factor  = 150)

QColor QColor.lighter ( self , int  factor  = 150)

Returns a lighter (or darker) color, but does not change this 对象。

factor is greater than 100, this functions returns a lighter color. Setting factor to 150 returns a color that is 50% brighter. If the factor is less than 100, the return color is darker, but we recommend using the darker () function for this purpose. If the factor is 0 or negative, the return value is unspecified.

The function converts the current RGB color to HSV, multiplies the value (V) component by factor and converts the color back to RGB.

该函数在 Qt 4.3 引入。

另请参阅 darker () 和 isValid ().

int QColor.lightness ( self )

Returns the lightness color component of this color.

该函数在 Qt 4.6 引入。

另请参阅 lightnessF () 和 getHsl ().

float QColor.lightnessF ( self )

Returns the lightness color component of this color.

该函数在 Qt 4.6 引入。

另请参阅 value () 和 getHslF ().

int QColor.magenta ( self )

Returns the magenta color component of this color.

另请参阅 magentaF (), getCmyk (),和 CMYK 颜色模型 .

float QColor.magentaF ( self )

Returns the magenta color component of this color.

另请参阅 magenta (), getCmykF (),和 CMYK 颜色模型 .

QString QColor.name ( self )

Returns the name of the color in the format "#RRGGBB"; i.e. a "#" character followed by three two-digit hexadecimal numbers.

另请参阅 setNamedColor ().

int QColor.red ( self )

Returns the red color component of this color.

另请参阅 setRed (), redF (),和 getRgb ().

float QColor.redF ( self )

Returns the red color component of this color.

另请参阅 setRedF (), red (),和 getRgbF ().

int QColor.rgb ( self )

Returns the RGB value of the color. The alpha value is opaque.

另请参阅 setRgb (), getRgb (),和 rgba ().

int QColor.rgba ( self )

Returns the RGB value of the color, including its alpha.

For an invalid color, the alpha value of the returned color is unspecified.

另请参阅 setRgba () 和 rgb ().

int QColor.saturation ( self )

Returns the saturation color component of this color.

The color is implicitly converted to HSV.

另请参阅 hsvSaturation (), saturationF (), getHsv (),和 HSV 颜色模型 .

float QColor.saturationF ( self )

Returns the saturation color component of this color.

The color is implicitly converted to HSV.

另请参阅 hsvSaturationF (), saturation (), getHsvF (),和 HSV 颜色模型 .

QColor.setAlpha ( self , int  alpha )

Sets the alpha of this color to alpha . Integer alpha is specified in the range 0-255.

另请参阅 alpha (), alphaF (),和 融合 Alpha 的绘制 .

QColor.setAlphaF ( self , float  alpha )

Sets the alpha of this color to alpha . qreal alpha is specified in the range 0.0-1.0.

另请参阅 alphaF (), alpha (),和 融合 Alpha 的绘制 .

QColor.setBlue ( self , int  blue )

Sets the blue color component of this color to blue . Integer components are specified in the range 0-255.

另请参阅 blue (), blueF (),和 setRgb ().

QColor.setBlueF ( self , float  blue )

Sets the blue color component of this color to blue . Float components are specified in the range 0.0-1.0.

另请参阅 blueF (), blue (),和 setRgbF ().

QColor.setCmyk ( self , int  c , int  m , int  y , int  k , int  alpha  = 255)

Sets the color to CMYK values, c (cyan), m (magenta), y (yellow), k (black), and a (alpha-channel, i.e. transparency).

All the values must be in the range 0-255.

另请参阅 getCmyk (), setCmykF (),和 CMYK 颜色模型 .

QColor.setCmykF ( self , float  c , float  m , float  y , float  k , float  alpha  = 1)

这是重载函数。

Sets the color to CMYK values, c (cyan), m (magenta), y (yellow), k (black), and a (alpha-channel, i.e. transparency).

All the values must be in the range 0.0-1.0.

另请参阅 getCmykF (), setCmyk (),和 CMYK 颜色模型 .

QColor.setGreen ( self , int  green )

Sets the green color component of this color to green . Integer components are specified in the range 0-255.

另请参阅 green (), greenF (),和 setRgb ().

QColor.setGreenF ( self , float  green )

Sets the green color component of this color to green . Float components are specified in the range 0.0-1.0.

另请参阅 greenF (), green (),和 setRgbF ().

QColor.setHsl ( self , int  h , int  s , int  l , int  alpha  = 255)

Sets a HSL color value; h is the hue, s 是 saturation, l is the lightness and a is the alpha component of the HSL color.

The saturation, value and alpha-channel values must be in the range 0-255, and the hue value must be greater than -1.

该函数在 Qt 4.6 引入。

另请参阅 getHsl () 和 setHslF ().

QColor.setHslF ( self , float  h , float  s , float  l , float  alpha  = 1)

Sets a HSL color lightness; h is the hue, s 是 saturation, l is the lightness and a is the alpha component of the HSL color.

All the values must be in the range 0.0-1.0.

该函数在 Qt 4.6 引入。

另请参阅 getHslF () 和 setHsl ().

QColor.setHsv ( self , int  h , int  s , int  v , int  alpha  = 255)

Sets a HSV color value; h is the hue, s 是 saturation, v is the value and a is the alpha component of the HSV color.

The saturation, value and alpha-channel values must be in the range 0-255, and the hue value must be greater than -1.

另请参阅 hsv (), getHsv (), setHsvF (),和 HSV 颜色模型 .

QColor.setHsvF ( self , float  h , float  s , float  v , float  alpha  = 1)

Sets a HSV color value; h is the hue, s 是 saturation, v is the value and a is the alpha component of the HSV color.

All the values must be in the range 0.0-1.0.

另请参阅 getHsvF (), setHsv (),和 HSV 颜色模型 .

QColor.setNamedColor ( self , QString  name )

Sets the RGB value of this QColor to name , which may be in one of these formats:

The color is invalid if name 无法剖析。

另请参阅 QColor (), name (), isValid (),和 allowX11ColorNames ().

QColor.setRed ( self , int  red )

Sets the red color component of this color to red . Integer components are specified in the range 0-255.

另请参阅 red (), redF (),和 setRgb ().

QColor.setRedF ( self , float  red )

Sets the red color component of this color to red . Float components are specified in the range 0.0-1.0.

另请参阅 redF (), red (),和 setRgbF ().

QColor.setRgb ( self , int  r , int  g , int  b , int  alpha  = 255)

Sets the RGB value to r , g , b and the alpha value to a .

All the values must be in the range 0-255.

另请参阅 rgb (), getRgb (),和 setRgbF ().

QColor.setRgb ( self , int  rgb )

这是重载函数。

Sets the RGB value to rgb . The alpha value is set to opaque.

QColor.setRgba ( self , int  rgba )

Sets the RGB value to rgba , including its alpha.

另请参阅 rgba () 和 rgb ().

QColor.setRgbF ( self , float  r , float  g , float  b , float  alpha  = 1)

Sets the color channels of this color to r (red), g (green), b (blue) and a (alpha, transparency).

All values must be in the range 0.0-1.0.

另请参阅 rgb (), getRgbF (),和 setRgb ().

Spec QColor.spec ( self )

返回如何指定颜色。

另请参阅 Spec and convertTo ().

QColor QColor.toCmyk ( self )

Creates and returns a CMYK QColor based on this color.

另请参阅 fromCmyk (), convertTo (), isValid (),和 CMYK 颜色模型 .

QColor QColor.toHsl ( self )

Creates and returns an HSL QColor based on this color.

另请参阅 fromHsl (), convertTo (),和 isValid ().

QColor QColor.toHsv ( self )

Creates and returns an HSV QColor based on this color.

另请参阅 fromHsv (), convertTo (), isValid (),和 HSV 颜色模型 .

QColor QColor.toRgb ( self )

Create and returns an RGB QColor based on this color.

另请参阅 fromRgb (), convertTo (),和 isValid ().

int QColor.value ( self )

Returns the value color component of this color.

另请参阅 valueF (), getHsv (),和 HSV 颜色模型 .

float QColor.valueF ( self )

Returns the value color component of this color.

另请参阅 value (), getHsvF (),和 HSV 颜色模型 .

int QColor.yellow ( self )

Returns the yellow color component of this color.

另请参阅 yellowF (), getCmyk (),和 CMYK 颜色模型 .

float QColor.yellowF ( self )

Returns the yellow color component of this color.

另请参阅 yellow (), getCmykF (),和 CMYK 颜色模型 .

bool QColor.__eq__ ( self , QColor   c )

bool QColor.__ne__ ( self , QColor   c )