Represents an 8-bit single-channel pixel, and can perform compositing operations on it.
More...
#include <juce_PixelFormats.h>
|
enum | { indexA = 0
} |
| The indexes of the different components in the byte layout of this type of colour. More...
|
|
|
| PixelAlpha ()=default |
| Creates a pixel without defining its colour. More...
|
|
| ~PixelAlpha ()=default |
|
template<class Pixel > |
forcedinline void | blend (const Pixel &src) noexcept |
| Blends another pixel onto this one. More...
|
|
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...
|
|
forcedinline void | desaturate () noexcept |
|
forcedinline uint8 | getAlpha () const noexcept |
|
forcedinline uint8 & | getAlpha () noexcept |
|
forcedinline uint8 | getBlue () const noexcept |
|
forcedinline uint32 | getEvenBytes () const noexcept |
| Return channels with an even index and insert zero bytes between them. More...
|
|
forcedinline uint8 | getGreen () const noexcept |
|
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 | 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 | getOddBytes () const noexcept |
| Return channels with an odd index and insert zero bytes between them. More...
|
|
forcedinline uint8 | getRed () const noexcept |
|
forcedinline void | multiplyAlpha (int multiplier) noexcept |
| Multiplies the colour's alpha value with another one. More...
|
|
forcedinline void | multiplyAlpha (const float multiplier) noexcept |
|
forcedinline void | premultiply () noexcept |
| Premultiplies the pixel's RGB values by its alpha. More...
|
|
template<class Pixel > |
forcedinline void | set (const Pixel &src) noexcept |
| Copies another pixel colour over this one. More...
|
|
forcedinline void | setAlpha (const uint8 newAlpha) noexcept |
| Replaces the colour's alpha value with another one. More...
|
|
forcedinline void | setARGB (const uint8 a_, const uint8, const uint8, const uint8) noexcept |
| Sets the pixel's colour from individual components. 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 | unpremultiply () noexcept |
| Unpremultiplies the pixel's RGB values. More...
|
|
Represents an 8-bit single-channel pixel, and can perform compositing operations on it.
This is used internally by the imaging classes.
- See also
- PixelARGB, PixelRGB
{Graphics}
◆ anonymous enum
The indexes of the different components in the byte layout of this type of colour.
◆ PixelAlpha() [1/2]
juce::PixelAlpha::PixelAlpha |
( |
| ) |
|
|
default |
Creates a pixel without defining its colour.
◆ ~PixelAlpha()
juce::PixelAlpha::~PixelAlpha |
( |
| ) |
|
|
default |
◆ PixelAlpha() [2/2]
juce::PixelAlpha::PixelAlpha |
( |
const uint32 |
internal | ) |
|
|
inlineprivatenoexcept |
◆ blend() [1/2]
template<class Pixel >
forcedinline void juce::PixelAlpha::blend |
( |
const Pixel & |
src | ) |
|
|
inlinenoexcept |
Blends another pixel onto this one.
This takes into account the opacity of the pixel being overlaid, and blends it accordingly.
◆ blend() [2/2]
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 int().
◆ desaturate()
◆ getAlpha() [1/2]
◆ getAlpha() [2/2]
◆ getBlue()
◆ getEvenBytes()
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
◆ getGreen()
◆ getInARGBMaskOrder()
Returns a uint32 which will be in argb order as if constructed with the following mask operation ((alpha << 24) | (red << 16) | (green << 8) | blue).
◆ getInARGBMemoryOrder()
uint32 juce::PixelAlpha::getInARGBMemoryOrder |
( |
| ) |
const |
|
inlinenoexcept |
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
◆ getNativeARGB()
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
◆ getOddBytes()
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
◆ getRed()
◆ multiplyAlpha() [1/2]
Multiplies the colour's alpha value with another one.
◆ multiplyAlpha() [2/2]
◆ premultiply()
Premultiplies the pixel's RGB values by its alpha.
◆ set()
template<class Pixel >
forcedinline void juce::PixelAlpha::set |
( |
const Pixel & |
src | ) |
|
|
inlinenoexcept |
Copies another pixel colour over this one.
This doesn't blend it - this colour is simply replaced by the other one.
◆ setAlpha()
Replaces the colour's alpha value with another one.
◆ setARGB()
Sets the pixel's colour from individual components.
◆ tween()
Blends another pixel with this one, creating a colour that is somewhere between the two, as specified by the amount.
◆ unpremultiply()
Unpremultiplies the pixel's RGB values.
uint8 juce::PixelAlpha::a |
|
private |
The documentation for this class was generated from the following file: