JUCE  v6.1.6 (6.0.8-1114)
JUCE API
Looking for a senior C++ dev?
I'm looking for work. Hire me!
juce::ImageEffectFilter Class Referenceabstract

A graphical effect filter that can be applied to components. More...

#include <juce_ImageEffectFilter.h>

Inheritance diagram for juce::ImageEffectFilter:

Public Member Functions

virtual ~ImageEffectFilter ()=default
 Destructor. More...
 
virtual void applyEffect (Image &sourceImage, Graphics &destContext, float scaleFactor, float alpha)=0
 Overridden to render the effect. More...
 

Detailed Description

A graphical effect filter that can be applied to components.

An ImageEffectFilter can be applied to the image that a component paints before it hits the screen.

This is used for adding effects like shadows, blurs, etc.

See also
Component::setComponentEffect

@tags{Graphics}

Constructor & Destructor Documentation

◆ ~ImageEffectFilter()

virtual juce::ImageEffectFilter::~ImageEffectFilter ( )
virtualdefault

Destructor.

Member Function Documentation

◆ applyEffect()

virtual void juce::ImageEffectFilter::applyEffect ( Image sourceImage,
Graphics destContext,
float  scaleFactor,
float  alpha 
)
pure virtual

Overridden to render the effect.

The implementation of this method must use the image that is passed in as its source, and should render its output to the graphics context passed in.

Parameters
sourceImagethe image that the source component has just rendered with its paint() method. The image may or may not have an alpha channel, depending on whether the component is opaque.
destContextthe graphics context to use to draw the resultant image.
scaleFactora scale factor that has been applied to the image - e.g. if this is 2, then the image is actually scaled-up to twice the original resolution
alphathe alpha with which to draw the resultant image to the target context

Implemented in juce::DropShadowEffect, and juce::GlowEffect.


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