JUCE
Public Types | Public Member Functions | List of all members
PixelRGB Class Reference

Represents a 24-bit RGB pixel, and can perform compositing operations on it. More...

Public Types

enum  { indexR = 0, indexG = 1, indexB = 2 }
 The indexes of the different components in the byte layout of this type of colour. More...
 

Public Member Functions

 PixelRGB () noexcept
 Creates a pixel without defining its colour. More...
 
 ~PixelRGB () noexcept
 
forcedinline uint32 getNativeARGB () const noexcept
 Returns a uint32 which represents the pixel in a platform dependent format which is compatible with the native format of a PixelARGB. More...
 
forcedinline uint32 getInARGBMaskOrder () const noexcept
 Returns a uint32 which will be in argb order as if constructed with the following mask operation ((alpha << 24) | (red << 16) | (green << 8) | blue). More...
 
uint32 getInARGBMemoryOrder () const noexcept
 Returns a uint32 which when written to memory, will be in the order a, r, g, b. More...
 
forcedinline uint32 getEvenBytes () const noexcept
 Return channels with an even index and insert zero bytes between them. More...
 
forcedinline uint32 getOddBytes () const noexcept
 Return channels with an odd index and insert zero bytes between them. More...
 
forcedinline uint8 getAlpha () const noexcept
 
forcedinline uint8 getRed () const noexcept
 
forcedinline uint8 getGreen () const noexcept
 
forcedinline uint8 getBlue () const noexcept
 
forcedinline uint8getRed () noexcept
 
forcedinline uint8getGreen () noexcept
 
forcedinline uint8getBlue () noexcept
 
template<class Pixel >
forcedinline void set (const Pixel &src) noexcept
 Copies another pixel colour over this one. More...
 
void setARGB (const uint8, const uint8 red, const uint8 green, const uint8 blue) noexcept
 Sets the pixel's colour from individual components. More...
 
template<class Pixel >
forcedinline void blend (const Pixel &src) noexcept
 Blends another pixel onto this one. More...
 
forcedinline void blend (const PixelRGB src) noexcept
 
template<class Pixel >
forcedinline void blend (const Pixel &src, uint32 extraAlpha) noexcept
 Blends another pixel onto this one, applying an extra multiplier to its opacity. More...
 
template<class Pixel >
forcedinline void tween (const Pixel &src, const uint32 amount) noexcept
 Blends another pixel with this one, creating a colour that is somewhere between the two, as specified by the amount. More...
 
forcedinline void setAlpha (const uint8) noexcept
 This method is included for compatibility with the PixelARGB class. More...
 
forcedinline void multiplyAlpha (int) noexcept
 Multiplies the colour's alpha value with another one. More...
 
forcedinline void multiplyAlpha (float) noexcept
 Multiplies the colour's alpha value with another one. More...
 
forcedinline void premultiply () noexcept
 Premultiplies the pixel's RGB values by its alpha. More...
 
forcedinline void unpremultiply () noexcept
 Unpremultiplies the pixel's RGB values. More...
 
forcedinline void desaturate () noexcept
 

Detailed Description

Represents a 24-bit RGB pixel, and can perform compositing operations on it.

This is used internally by the imaging classes.

See also
PixelARGB

Member Enumeration Documentation

anonymous enum

The indexes of the different components in the byte layout of this type of colour.

Enumerator
indexR 
indexG 
indexB 

Constructor & Destructor Documentation

PixelRGB::PixelRGB ( )
noexcept

Creates a pixel without defining its colour.

PixelRGB::~PixelRGB ( )
noexcept

Member Function Documentation

forcedinline uint32 PixelRGB::getNativeARGB ( ) const
noexcept

Returns a uint32 which represents the pixel in a platform dependent format which is compatible with the native format of a PixelARGB.

See also
PixelARGB::getNativeARGB
forcedinline uint32 PixelRGB::getInARGBMaskOrder ( ) const
noexcept

Returns a uint32 which will be in argb order as if constructed with the following mask operation ((alpha << 24) | (red << 16) | (green << 8) | blue).

uint32 PixelRGB::getInARGBMemoryOrder ( ) const
noexcept

Returns a uint32 which when written to memory, will be in the order a, r, g, b.

In other words, if the return-value is read as a uint8 array then the elements will be in the order of a, r, g, b

forcedinline uint32 PixelRGB::getEvenBytes ( ) const
noexcept

Return channels with an even index and insert zero bytes between them.

This is useful for blending operations. The exact channels which are returned is platform dependent but compatible with the return value of getEvenBytes of the PixelARGB class.

See also
PixelARGB::getEvenBytes

Referenced by PixelARGB::blend(), and PixelARGB::tween().

forcedinline uint32 PixelRGB::getOddBytes ( ) const
noexcept

Return channels with an odd index and insert zero bytes between them.

This is useful for blending operations. The exact channels which are returned is platform dependent but compatible with the return value of getOddBytes of the PixelARGB class.

See also
PixelARGB::getOddBytes

Referenced by PixelARGB::blend(), and PixelARGB::tween().

forcedinline uint8 PixelRGB::getAlpha ( ) const
noexcept
forcedinline uint8 PixelRGB::getRed ( ) const
noexcept
forcedinline uint8 PixelRGB::getGreen ( ) const
noexcept
forcedinline uint8 PixelRGB::getBlue ( ) const
noexcept
forcedinline uint8& PixelRGB::getRed ( )
noexcept
forcedinline uint8& PixelRGB::getGreen ( )
noexcept
forcedinline uint8& PixelRGB::getBlue ( )
noexcept
template<class Pixel >
forcedinline void PixelRGB::set ( const Pixel &  src)
noexcept

Copies another pixel colour over this one.

This doesn't blend it - this colour is simply replaced by the other one. Because PixelRGB has no alpha channel, any alpha value in the source pixel is thrown away.

void PixelRGB::setARGB ( const uint8  ,
const uint8  red,
const uint8  green,
const uint8  blue 
)
noexcept

Sets the pixel's colour from individual components.

template<class Pixel >
forcedinline void PixelRGB::blend ( const Pixel &  src)
noexcept

Blends another pixel onto this one.

This takes into account the opacity of the pixel being overlaid, and blends it accordingly.

References clampPixelComponents(), and maskPixelComponents().

forcedinline void PixelRGB::blend ( const PixelRGB  src)
noexcept
template<class Pixel >
forcedinline void PixelRGB::blend ( const Pixel &  src,
uint32  extraAlpha 
)
noexcept

Blends another pixel onto this one, applying an extra multiplier to its opacity.

The opacity of the pixel being overlaid is scaled by the extraAlpha factor before being used, so this can blend semi-transparently from a PixelRGB argument.

References clampPixelComponents(), and maskPixelComponents().

template<class Pixel >
forcedinline void PixelRGB::tween ( const Pixel &  src,
const uint32  amount 
)
noexcept

Blends another pixel with this one, creating a colour that is somewhere between the two, as specified by the amount.

forcedinline void PixelRGB::setAlpha ( const uint8  )
noexcept

This method is included for compatibility with the PixelARGB class.

forcedinline void PixelRGB::multiplyAlpha ( int  )
noexcept

Multiplies the colour's alpha value with another one.

forcedinline void PixelRGB::multiplyAlpha ( float  )
noexcept

Multiplies the colour's alpha value with another one.

forcedinline void PixelRGB::premultiply ( )
noexcept

Premultiplies the pixel's RGB values by its alpha.

forcedinline void PixelRGB::unpremultiply ( )
noexcept

Unpremultiplies the pixel's RGB values.

forcedinline void PixelRGB::desaturate ( )
noexcept

The documentation for this class was generated from the following file: