QGIS API Documentation 3.99.0-Master (8e76e220402)
Loading...
Searching...
No Matches
qgscoloreffect.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgscoloreffect.cpp
3 ------------------
4 begin : March 2015
5 copyright : (C) 2015 Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
18#include "qgscoloreffect.h"
19
20#include <algorithm>
21
22#include "qgscolorutils.h"
23#include "qgsimageoperation.h"
24#include "qgsrendercontext.h"
25
26#include <QString>
27
28using namespace Qt::StringLiterals;
29
30QgsPaintEffect *QgsColorEffect::create( const QVariantMap &map )
31{
32 QgsColorEffect *newEffect = new QgsColorEffect();
33 newEffect->readProperties( map );
34 return newEffect;
35}
36
38 : mColorizeColor( QColor::fromRgb( 255, 128, 128 ) )
39{
40
41}
42
47
49{
50 if ( !enabled() || !context.painter() || source().isNull() )
51 return;
52
54 {
55 //just draw unmodified source, we can't render this effect when forcing vectors
56 drawSource( *context.painter() );
57 return;
58 }
59
60 QPainter *painter = context.painter();
61
62 //rasterize source and apply modifications
63 QImage image = sourceAsImage( context ).copy();
64
65 QgsImageOperation::adjustBrightnessContrast( image, mBrightness, mContrast / 100.0 + 1, context.feedback() );
66
67 if ( context.feedback() && context.feedback()->isCanceled() )
68 return;
69
70 if ( mGrayscaleMode != QgsImageOperation::GrayscaleOff )
71 {
72 QgsImageOperation::convertToGrayscale( image, static_cast< QgsImageOperation::GrayscaleMode >( mGrayscaleMode ), context.feedback() );
73 }
74
75 if ( context.feedback() && context.feedback()->isCanceled() )
76 return;
77
78 QgsImageOperation::adjustHueSaturation( image, mSaturation, mColorizeOn ? mColorizeColor : QColor(), mColorizeStrength / 100.0, context.feedback() );
79
80 if ( context.feedback() && context.feedback()->isCanceled() )
81 return;
82
83 QgsImageOperation::multiplyOpacity( image, mOpacity, context.feedback() );
84
85 if ( context.feedback() && context.feedback()->isCanceled() )
86 return;
87
88 QgsScopedQPainterState painterState( painter );
89 painter->setCompositionMode( mBlendMode );
90 painter->drawImage( imageOffset( context ), image );
91}
92
93
94QVariantMap QgsColorEffect::properties() const
95{
96 QVariantMap props;
97 props.insert( u"enabled"_s, mEnabled ? u"1"_s : u"0"_s );
98 props.insert( u"draw_mode"_s, QString::number( int( mDrawMode ) ) );
99 props.insert( u"blend_mode"_s, QString::number( int( mBlendMode ) ) );
100 props.insert( u"opacity"_s, QString::number( mOpacity ) );
101 props.insert( u"brightness"_s, QString::number( mBrightness ) );
102 props.insert( u"contrast"_s, QString::number( mContrast ) );
103 props.insert( u"saturation"_s, QString::number( mSaturation ) );
104 props.insert( u"grayscale_mode"_s, QString::number( int( mGrayscaleMode ) ) );
105 props.insert( u"colorize"_s, mColorizeOn ? u"1"_s : u"0"_s );
106 props.insert( u"colorize_color"_s, QgsColorUtils::colorToString( mColorizeColor ) );
107 props.insert( u"colorize_strength"_s, QString::number( mColorizeStrength ) );
108
109 return props;
110}
111
112void QgsColorEffect::readProperties( const QVariantMap &props )
113{
114 bool ok;
115 QPainter::CompositionMode mode = static_cast< QPainter::CompositionMode >( props.value( u"blend_mode"_s ).toInt( &ok ) );
116 if ( ok )
117 {
118 mBlendMode = mode;
119 }
120 if ( props.contains( u"transparency"_s ) )
121 {
122 double transparency = props.value( u"transparency"_s ).toDouble( &ok );
123 if ( ok )
124 {
125 mOpacity = 1.0 - transparency;
126 }
127 }
128 else
129 {
130 double opacity = props.value( u"opacity"_s ).toDouble( &ok );
131 if ( ok )
132 {
133 mOpacity = opacity;
134 }
135 }
136 mEnabled = props.value( u"enabled"_s, u"1"_s ).toInt();
137 mDrawMode = static_cast< QgsPaintEffect::DrawMode >( props.value( u"draw_mode"_s, u"2"_s ).toInt() );
138
139 mBrightness = props.value( u"brightness"_s, u"0"_s ).toInt();
140 mContrast = props.value( u"contrast"_s, u"0"_s ).toInt();
141 mSaturation = props.value( u"saturation"_s, u"1.0"_s ).toDouble();
142 mGrayscaleMode = static_cast< QgsImageOperation::GrayscaleMode >( props.value( u"grayscale_mode"_s, u"0"_s ).toInt() );
143 mColorizeOn = props.value( u"colorize"_s, u"0"_s ).toInt();
144 if ( props.contains( u"colorize_color"_s ) )
145 {
146 setColorizeColor( QgsColorUtils::colorFromString( props.value( u"colorize_color"_s ).toString() ) );
147 }
148 mColorizeStrength = props.value( u"colorize_strength"_s, u"100"_s ).toInt();
149}
150
152{
153 QgsColorEffect *newEffect = new QgsColorEffect( *this );
154 return newEffect;
155}
156
158{
159 mBrightness = std::clamp( brightness, -255, 255 );
160}
161
163{
164 mContrast = std::clamp( contrast, -100, 100 );
165}
166
168{
169 mColorizeColor = colorizeColor;
170}
@ ForceVector
Always force vector-based rendering, even when the result will be visually different to a raster-base...
Definition qgis.h:2764
@ RequiresRasterization
The effect requires raster-based rendering.
Definition qgis.h:2864
QFlags< PaintEffectFlag > PaintEffectFlags
Flags which control how paint effects behave.
Definition qgis.h:2873
void readProperties(const QVariantMap &props) override
Reads a string map of an effect's properties and restores the effect to the state described by the pr...
double opacity() const
Returns the opacity for the effect.
QgsColorEffect * clone() const override
Duplicates an effect by creating a deep copy of the effect.
void setColorizeColor(const QColor &colorizeColor)
Sets the color used for colorizing a picture.
static QgsPaintEffect * create(const QVariantMap &map)
Creates a new QgsColorEffect effect from a properties string map.
Qgis::PaintEffectFlags flags() const override
Returns flags which specify how the paint effect behaves.
int contrast() const
Returns the contrast modification for the effect.
int brightness() const
Returns the brightness modification for the effect.
void setContrast(int contrast)
Sets the contrast modification for the effect.
void draw(QgsRenderContext &context) override
Handles drawing of the effect's result on to the specified render context.
void setBrightness(int brightness)
Sets the brightness modification for the effect.
QVariantMap properties() const override
Returns the properties describing the paint effect encoded in a string format.
QColor colorizeColor() const
Returns the color used for colorizing a picture.
static QColor colorFromString(const QString &string)
Decodes a string into a color value.
static QString colorToString(const QColor &color)
Encodes a color into a string value.
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:55
static void adjustHueSaturation(QImage &image, double saturation, const QColor &colorizeColor=QColor(), double colorizeStrength=1.0, QgsFeedback *feedback=nullptr)
Alter the hue or saturation of a QImage.
static void multiplyOpacity(QImage &image, double factor, QgsFeedback *feedback=nullptr)
Multiplies opacity of image pixel values by a factor.
static void adjustBrightnessContrast(QImage &image, int brightness, double contrast, QgsFeedback *feedback=nullptr)
Alter the brightness or contrast of a QImage.
static void convertToGrayscale(QImage &image, GrayscaleMode mode=GrayscaleLuminosity, QgsFeedback *feedback=nullptr)
Convert a QImage to a grayscale image.
GrayscaleMode
Modes for converting a QImage to grayscale.
QgsPaintEffect()=default
void drawSource(QPainter &painter)
Draws the source QPicture onto the specified painter.
QImage sourceAsImage(QgsRenderContext &context)
Returns the source QPicture rendered to a new QImage.
const QPicture & source() const
Returns the source QPicture.
QPointF imageOffset(const QgsRenderContext &context) const
Returns the offset which should be used when drawing the source image on to a destination render cont...
bool enabled() const
Returns whether the effect is enabled.
DrawMode
Drawing modes for effects.
Contains information about the context of a rendering operation.
QPainter * painter()
Returns the destination QPainter for the render operation.
QgsFeedback * feedback() const
Returns the feedback object that can be queried regularly during rendering to check if rendering shou...
Qgis::RasterizedRenderingPolicy rasterizedRenderingPolicy() const
Returns the policy controlling when rasterisation of content during renders is permitted.
Scoped object for saving and restoring a QPainter object's state.