Table Of Contents

Previous topic

QueryNewPaletteEvent

Next topic

RadioBox

This Page

phoenix_title RGBValue

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


class_hierarchy Inheritance Diagram

Inheritance diagram for class RGBValue

Inheritance diagram of RGBValue


method_summary Methods Summary

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

api Class API



class RGBValue(object)

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

Possible constructors:

RGBValue(r=0, g=0, b=0)

Methods



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

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

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

Parameters:
  • r (int) –
  • g (int) –
  • b (int) –