phoenix_title wx.Image.RGBValue

A simple class which stores red, green and blue values as 8 bit integers in the range of 0-255.


class_hierarchy Class Hierarchy

Inheritance diagram for class RGBValue:

method_summary Methods Summary

__init__

Constructor for wx.Image.RGBValue, an object that contains values for red, green and blue which represent the value of a color.


property_summary Properties Summary

blue

A public C++ attribute of type int.

green

A public C++ attribute of type int.

red

A public C++ attribute of type int.


api Class API

class wx.Image.RGBValue(object)

Possible constructors:

RGBValue(r: int=0, g: int=0, b: int=0) -> None
A simple class which stores red, green and blue values as 8 bit

integers in the range of 0-255.


Methods

__init__(self, r: int=0, g: int=0, b: int=0)

Constructor for wx.Image.RGBValue, an object that contains values for red, green and blue which represent the value of a color.

It is used by wx.Image.HSVtoRGB and wx.Image.RGBtoHSV , which convert between HSV color space and RGB color space.

Parameters:
  • r (int) –

  • g (int) –

  • b (int) –

Return type:

None


Properties

blue

A public C++ attribute of type int.



green

A public C++ attribute of type int.



red

A public C++ attribute of type int.