QGIS API Documentation
2.18.21-Las Palmas (9fba24a)
|
The raster shade function applies a shader to a pixel at render time - typically used to render grayscale images as false color. More...
#include <qgsrastershaderfunction.h>
Public Member Functions | |
QgsRasterShaderFunction (double theMinimumValue=0.0, double theMaximumValue=255.0) | |
virtual | ~QgsRasterShaderFunction () |
virtual void | legendSymbologyItems (QList< QPair< QString, QColor > > &symbolItems) const |
double | maximumValue () const |
double | minimumMaximumRange () const |
double | minimumValue () const |
virtual void | setMaximumValue (double) |
Set the maximum value. More... | |
virtual void | setMinimumValue (double) |
Return the minimum value. More... | |
virtual bool | shade (double, int *, int *, int *, int *) |
generates and new RGBA value based on one input value More... | |
virtual bool | shade (double, double, double, double, int *, int *, int *, int *) |
generates and new RGBA value based on original RGBA value More... | |
Protected Attributes | |
double | mMaximumValue |
User defineable maximum value for the shading function. More... | |
double | mMinimumMaximumRange |
Minimum maximum range for the shading function. More... | |
double | mMinimumValue |
User defineable minimum value for the shading function. More... | |
The raster shade function applies a shader to a pixel at render time - typically used to render grayscale images as false color.
Definition at line 30 of file qgsrastershaderfunction.h.
QgsRasterShaderFunction::QgsRasterShaderFunction | ( | double | theMinimumValue = 0.0 , |
double | theMaximumValue = 255.0 |
||
) |
Definition at line 22 of file qgsrastershaderfunction.cpp.
|
inlinevirtual |
Definition at line 35 of file qgsrastershaderfunction.h.
|
inlinevirtual |
Reimplemented in QgsColorRampShader.
Definition at line 54 of file qgsrastershaderfunction.h.
|
inline |
Definition at line 52 of file qgsrastershaderfunction.h.
|
inline |
Definition at line 49 of file qgsrastershaderfunction.h.
|
inline |
Definition at line 51 of file qgsrastershaderfunction.h.
|
virtual |
Set the maximum value.
Set the maximum value for the raster shader.
theValue | The new maximum value |
Reimplemented in QgsPseudoColorShader.
Definition at line 36 of file qgsrastershaderfunction.cpp.
|
virtual |
Return the minimum value.
Set the maximum value for the raster shader.
theValue | The new minimum value |
Reimplemented in QgsPseudoColorShader.
Definition at line 49 of file qgsrastershaderfunction.cpp.
|
virtual |
generates and new RGBA value based on one input value
Generates and new RGBA value based on one input value.
theValue | The original value to base a new RGBA value on |
theReturnRedValue | The red component of the new RGBA value |
theReturnGreenValue | The green component of the new RGBA value |
theReturnBlueValue | The blue component of the new RGBA value |
theReturnAlphaValue | The blue component of the new RGBA value |
Reimplemented in QgsColorRampShader.
Definition at line 67 of file qgsrastershaderfunction.cpp.
|
virtual |
generates and new RGBA value based on original RGBA value
Generates and new RGBA value based on an original RGBA value.
theRedValue | The red component of the original value to base a new RGBA value on |
theGreenValue | The green component of the original value to base a new RGBA value on |
theBlueValue | The blue component of the original value to base a new RGBA value on |
theAlphaValue | The alpha component of the original value to base a new RGBA value on |
theReturnRedValue | The red component of the new RGBA value |
theReturnGreenValue | The green component of the new RGBA value |
theReturnBlueValue | The blue component of the new RGBA value |
theReturnAlphaValue | The alpha component of the new RGBA value |
Reimplemented in QgsColorRampShader.
Definition at line 93 of file qgsrastershaderfunction.cpp.
|
protected |
User defineable maximum value for the shading function.
Definition at line 58 of file qgsrastershaderfunction.h.
|
protected |
Minimum maximum range for the shading function.
Definition at line 64 of file qgsrastershaderfunction.h.
|
protected |
User defineable minimum value for the shading function.
Definition at line 61 of file qgsrastershaderfunction.h.