The QRgba64 struct contains a 64-bit RGB color. 更多...
| 頭: | #include <QRgba64> |
| qmake: | QT += gui |
| Since: | Qt 5.6 |
| QRgba64 () = default | |
| quint8 | alpha8 () const |
| quint16 | alpha () const |
| quint8 | blue8 () const |
| quint16 | blue () const |
| quint8 | green8 () const |
| quint16 | green () const |
| bool | isOpaque () const |
| bool | isTransparent () const |
| QRgba64 | premultiplied () const |
| quint8 | red8 () const |
| quint16 | red () const |
| void | setAlpha (quint16 alpha ) |
| void | setBlue (quint16 blue ) |
| void | setGreen (quint16 green ) |
| void | setRed (quint16 red ) |
| uint | toArgb32 () const |
| ushort | toRgb16 () const |
| QRgba64 | unpremultiplied () const |
| operator quint64 () const | |
| QRgba64 | operator= (quint64 rgba ) |
| QRgba64 | fromArgb32 (uint rgb ) |
| QRgba64 | fromRgba64 (quint64 c ) |
| QRgba64 | fromRgba64 (quint16 r , quint16 g , quint16 b , quint16 a ) |
| QRgba64 | fromRgba (quint8 red , quint8 green , quint8 blue , quint8 alpha ) |
The QRgba64 struct contains a 64-bit RGB color.
QRgba64 is a 64-bit data-structure containing four 16-bit color channels: Red, green, blue and alpha.
QRgba64 can be used a replacement for QRgb when higher precision is needed. In particular a premultiplied QRgba64 can operate on unpremultiplied QRgb without loss of precision except for alpha 0.
[default]
QRgba64::
QRgba64
()
Default constructs an instance of QRgba64.
Returns the alpha channel as an 8-bit.
Returns the 16-bit alpha channel.
另請參閱 setAlpha ().
Returns the blue color component as an 8-bit.
Returns the 16-bit blue color component.
另請參閱 setBlue ().
[static]
QRgba64
QRgba64::
fromArgb32
(
uint
rgb
)
構造 QRgba64 value from the 32bit ARGB value rgb .
另請參閱 fromRgba ().
[static]
QRgba64
QRgba64::
fromRgba64
(
quint64
c
)
返迴 c 作為 QRgba64 struct.
另請參閱 fromArgb32 ().
[static]
QRgba64
QRgba64::
fromRgba64
(
quint16
r
,
quint16
g
,
quint16
b
,
quint16
a
)
返迴 QRgba64 四元組 ( r , g , b , a ).
另請參閱 fromRgba ().
[static]
QRgba64
QRgba64::
fromRgba
(
quint8
red
,
quint8
green
,
quint8
blue
,
quint8
alpha
)
構造 QRgba64 value from the four 8-bit color channels red , green , blue and alpha .
另請參閱 fromArgb32 ().
Returns the green color component as an 8-bit.
Returns the 16-bit green color component.
另請參閱 setGreen ().
Returns whether the color is fully opaque.
另請參閱 isTransparent () 和 alpha ().
Returns whether the color is transparent.
Returns the color with the alpha premultiplied.
另請參閱 unpremultiplied ().
Returns the red color component as an 8-bit.
Returns the 16-bit red color component.
另請參閱 setRed ().
將此顔色的 Alpha 設為 alpha .
另請參閱 alpha ().
將此顔色的藍色顔色分量設為 blue .
另請參閱 blue ().
將此顔色的綠色顔色分量設為 green .
另請參閱 green ().
將此顔色的紅色顔色分量設為 red .
另請參閱 red ().
Returns the color as a 32-bit ARGB value.
另請參閱 fromArgb32 ().
Returns the color as a 16-bit RGB value.
另請參閱 toArgb32 ().
Returns the color with the alpha unpremultiplied.
另請參閱 premultiplied ().
Returns the color as a 64bit unsigned integer
Assigns the value rgba to this instance of QRgba64 並返迴它。