33using namespace Qt::StringLiterals;
36 : mIterator( iterator )
37 , mDpiTarget( dpiTarget )
42 : mIterator( iterator )
57 if ( !p || !mIterator || !viewPort || !qgsMapToPixel )
62 if ( mDpiTarget >= 0 )
64 mDpiScaleFactor = mDpiTarget / p->device()->logicalDpiX();
68 const int bandNumber = 1;
69 mIterator->startRasterRead( bandNumber, std::floor(
static_cast<double>( viewPort->
mWidth ) * mDevicePixelRatio ), std::floor(
static_cast<double>( viewPort->
mHeight ) * mDevicePixelRatio ), viewPort->
mDrawnExtent, feedback );
80 std::unique_ptr< QgsRasterBlock > block;
83 while ( mIterator->readNextRasterPart( bandNumber, nCols, nRows,
84 block, topLeftCol, topLeftRow ) )
92 QImage img = block->image();
96 QPdfWriter *pdfWriter =
dynamic_cast<QPdfWriter *
>( p->device() );
101 img = img.convertToFormat( QImage::Format_ARGB32 );
102 const QRgb transparentBlack = qRgba( 0, 0, 0, 0 );
103 const QRgb transparentWhite = qRgba( 255, 255, 255, 0 );
104 for (
int x = 0; x < img.width(); x++ )
106 for (
int y = 0; y < img.height(); y++ )
108 if ( img.pixel( x, y ) == transparentBlack )
110 img.setPixel( x, y, transparentWhite );
121 p->setCompositionMode( QPainter::CompositionMode_Source );
124 drawImage( p, viewPort, img, topLeftCol, topLeftRow, qgsMapToPixel );
129 p->setCompositionMode( QPainter::CompositionMode_SourceOver );
141 if ( !p || !viewPort )
147 const QPoint tlPoint = QPoint( std::floor( viewPort->
mTopLeftPoint.
x() + topLeftCol / mDpiScaleFactor / mDevicePixelRatio ),
148 std::floor( viewPort->
mTopLeftPoint.
y() + topLeftRow / mDpiScaleFactor / mDevicePixelRatio ) );
154 p->setRenderHint( QPainter::SmoothPixmapTransform,
true );
160 p->setBrush( QBrush( QColor( Qt::white ), Qt::NoBrush ) );
163 const int w = qgsMapToPixel->
mapWidth();
164 const int h = qgsMapToPixel->
mapHeight();
165 const double rotation = qgsMapToPixel->
mapRotation();
169 const double cx = w / 2.0;
170 const double cy = h / 2.0;
171 p->translate( cx, cy );
172 p->rotate( rotation );
173 p->translate( -cx, -cy );
177 p->drawImage( QRect( tlPoint.x(), tlPoint.y(),
178 std::ceil( img.width() / mDpiScaleFactor / mDevicePixelRatio ),
179 std::ceil( img.height() / mDpiScaleFactor / mDevicePixelRatio ) ),
184 QRectF br = QRectF( tlPoint, img.size() / mDpiScaleFactor / devicePixelRatio );
185 QPointF
c = br.center();
186 double rad = std::max( br.width(), br.height() ) / 10;
187 p->drawRoundedRect( br, rad, rad );
188 p->drawLine( QLineF( br.x(), br.y(), br.x() + br.width(), br.y() + br.height() ) );
189 p->drawLine( QLineF( br.x() + br.width(), br.y(), br.x(), br.y() + br.height() ) );
191 double nw = br.width() * 0.5;
192 double nh = br.height() * 0.5;
193 br = QRectF(
c - QPointF( nw / 2, nh / 2 ), QSize( nw, nh ) );
194 p->drawRoundedRect( br, rad, rad );
196 nw = br.width() * 0.5;
197 nh = br.height() * 0.5;
198 br = QRectF(
c - QPointF( nw / 2, nh / 2 ), QSize( nw, nh ) );
199 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.
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, in map (destination) CRS.
qgssize mWidth
Width, number of columns to be rendered.