31 : mIterator( iterator )
32 , mDpiTarget( dpiTarget )
37 : mIterator( iterator )
52 if ( !p || !mIterator || !viewPort || !qgsMapToPixel )
57 if ( mDpiTarget >= 0 )
59 mDpiScaleFactor = mDpiTarget / p->device()->logicalDpiX();
63 const int bandNumber = 1;
64 mIterator->
startRasterRead( bandNumber, std::floor(
static_cast<double>( viewPort->
mWidth ) * mDevicePixelRatio ), std::floor(
static_cast<double>( viewPort->
mHeight ) * mDevicePixelRatio ), viewPort->
mDrawnExtent, feedback );
75 std::unique_ptr< QgsRasterBlock > block;
79 block, topLeftCol, topLeftRow ) )
87 QImage img = block->image();
91 QPdfWriter *pdfWriter =
dynamic_cast<QPdfWriter *
>( p->device() );
96 img = img.convertToFormat( QImage::Format_ARGB32 );
97 const QRgb transparentBlack = qRgba( 0, 0, 0, 0 );
98 const QRgb transparentWhite = qRgba( 255, 255, 255, 0 );
99 for (
int x = 0; x < img.width(); x++ )
101 for (
int y = 0; y < img.height(); y++ )
103 if ( img.pixel( x, y ) == transparentBlack )
105 img.setPixel( x, y, transparentWhite );
116 p->setCompositionMode( QPainter::CompositionMode_Source );
119 drawImage( p, viewPort, img, topLeftCol, topLeftRow, qgsMapToPixel );
124 p->setCompositionMode( QPainter::CompositionMode_SourceOver );
136 if ( !p || !viewPort )
142 const QPoint tlPoint = QPoint( std::floor( viewPort->
mTopLeftPoint.
x() + topLeftCol / mDpiScaleFactor / mDevicePixelRatio ),
143 std::floor( viewPort->
mTopLeftPoint.
y() + topLeftRow / mDpiScaleFactor / mDevicePixelRatio ) );
145 p->setRenderHint( QPainter::Antialiasing,
false );
149 p->setRenderHint( QPainter::SmoothPixmapTransform,
true );
155 p->setBrush( QBrush( QColor( Qt::white ), Qt::NoBrush ) );
158 const int w = qgsMapToPixel->
mapWidth();
159 const int h = qgsMapToPixel->
mapHeight();
160 const double rotation = qgsMapToPixel->
mapRotation();
164 const double cx = w / 2.0;
165 const double cy = h / 2.0;
166 p->translate( cx, cy );
167 p->rotate( rotation );
168 p->translate( -cx, -cy );
172 p->drawImage( QRect( tlPoint.x(), tlPoint.y(),
173 std::ceil( img.width() / mDpiScaleFactor / mDevicePixelRatio ),
174 std::ceil( img.height() / mDpiScaleFactor / mDevicePixelRatio ) ),
179 QRectF br = QRectF( tlPoint, img.size() / mDpiScaleFactor / devicePixelRatio );
180 QPointF
c = br.center();
181 double rad = std::max( br.width(), br.height() ) / 10;
182 p->drawRoundedRect( br, rad, rad );
183 p->drawLine( QLineF( br.x(), br.y(), br.x() + br.width(), br.y() + br.height() ) );
184 p->drawLine( QLineF( br.x() + br.width(), br.y(), br.x(), br.y() + br.height() ) );
186 double nw = br.width() * 0.5;
187 double nh = br.height() * 0.5;
188 br = QRectF(
c - QPointF( nw / 2, nh / 2 ), QSize( nw, nh ) );
189 p->drawRoundedRect( br, rad, rad );
191 nw = br.width() * 0.5;
192 nh = br.height() * 0.5;
193 br = QRectF(
c - QPointF( nw / 2, nh / 2 ), QSize( nw, nh ) );
194 p->drawRoundedRect( br, rad, rad );
bool isCanceled() const
Tells whether the operation has been canceled already.
Perform transforms between map coordinates and device coordinates.
int mapHeight() const
Returns current map height in pixels.
int mapWidth() const
Returns the current map width in pixels.
double mapRotation() const
Returns the current map rotation in degrees (clockwise).
Feedback object tailored for raster block reading.
bool renderPartialOutput() const
Whether our painter is drawing to a temporary image used just by this layer.
void drawImage(QPainter *p, QgsRasterViewPort *viewPort, const QImage &img, int topLeftCol, int topLeftRow, const QgsMapToPixel *mapToPixel=nullptr) const
Draws raster part.
Q_DECL_DEPRECATED QgsRasterDrawer(QgsRasterIterator *iterator, double dpiTarget)
The QgsRasterDrawer constructor.
void draw(QPainter *p, QgsRasterViewPort *viewPort, const QgsMapToPixel *qgsMapToPixel, QgsRasterBlockFeedback *feedback=nullptr)
Draws raster data.
Iterator for sequentially processing raster cells.
bool readNextRasterPart(int bandNumber, int &nCols, int &nRows, QgsRasterBlock **block, int &topLeftCol, int &topLeftRow)
Fetches next part of raster data, caller takes ownership of the block and caller should delete the bl...
void startRasterRead(int bandNumber, qgssize nCols, qgssize nRows, const QgsRectangle &extent, QgsRasterBlockFeedback *feedback=nullptr)
Start reading of raster band.
Contains information about the context of a rendering operation.
double scaleFactor() const
Returns the scaling factor for the render to convert painter units to physical sizes.
QPainter * painter()
Returns the destination QPainter for the render operation.
float devicePixelRatio() const
Returns the device pixel ratio.
double dpiTarget() const
Returns the targeted DPI for rendering.
const QgsMapToPixel & mapToPixel() const
Returns the context's map to pixel transform, which transforms between map coordinates and device coo...
Scoped object for saving and restoring a QPainter object's state.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
#define QgsDebugMsgLevel(str, level)
#define QgsDebugError(str)
This class provides details of the viewable area that a raster will be rendered into.
qgssize mHeight
Height, number of rows to be rendered.
QgsPointXY mTopLeftPoint
Coordinate (in output device coordinate system) of top left corner of the part of the raster that is ...
QgsRectangle mDrawnExtent
Intersection of current map extent and layer extent.
qgssize mWidth
Width, number of columns to be rendered.