PySide6.QtWidgets.QColormap¶
- class QColormap¶
- The - QColormapclass maps device independent QColors to device dependent pixel values. More…- Synopsis¶- Methods¶- def - __init__()
- def - colorAt()
- def - colormap()
- def - depth()
- def - mode()
- def - pixel()
- def - size()
 - Static functions¶- def - cleanup()
- def - initialize()
- def - instance()
 - Note - This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE - Detailed Description¶- class Mode¶
- This enum describes how - QColormapmaps device independent RGB values to device dependent pixel values.- Constant - Description - QColormap.Direct - Pixel values are derived directly from the RGB values, also known as “True Color.” - QColormap.Indexed - Pixel values represent indexes into a list of available colors, i.e. - QColormapuses the index of the color that most closely matches an RGB value.- QColormap.Gray - Similar to - Indexed, pixel values represent a list of available gray tones.- QColormapuses the index of the gray tone that most closely matches the computed gray tone of an RGB value.
 - Constructs a copy of another - colormap.- static cleanup()¶
 - Returns a QColor for the - pixel.- See also - Returns a list of colors which represents the devices colormap for - Indexedand- Graymodes. This function returns an empty list for- Directmode.- See also - depth()¶
- Return type:
- int 
 
 - Returns the depth of the device. - See also - static initialize()¶
 - Returns the colormap for the specified - screen. If- screenis -1, this function returns the colormap for the default screen.- Returns the mode of this colormap. - See also - Returns a device dependent pixel value for the - color.- See also - size()¶
- Return type:
- int 
 
 - Returns the size of the colormap for - Indexedand- Graymodes; Returns -1 for- Directmode.- See also