QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
Interface for resampling rasters (e.g. More...
#include <qgsrasterresampler.h>
Public Member Functions | |
virtual | ~QgsRasterResampler ()=default |
virtual QgsRasterResampler * | clone () const =0 |
Gets a deep copy of this object. More... | |
virtual Q_DECL_DEPRECATED void | resample (const QImage &srcImage, QImage &dstImage)=0 |
Resamples a source image to a destination image. More... | |
virtual int | tileBufferPixels () const |
Returns the optional tile buffer size in pixels. More... | |
virtual QString | type () const =0 |
Gets a descriptive type identifier for this raster resampler. More... | |
Interface for resampling rasters (e.g.
to have a smoother appearance)
Definition at line 33 of file qgsrasterresampler.h.
|
virtualdefault |
|
pure virtual |
Gets a deep copy of this object.
Needs to be reimplemented by subclasses. Ownership is transferred to the caller.
Implemented in QgsCubicRasterResampler, and QgsBilinearRasterResampler.
|
pure virtual |
Resamples a source image to a destination image.
The size of the passed destination image should be respected during the resampling process.
Implemented in QgsCubicRasterResampler, and QgsBilinearRasterResampler.
|
inlinevirtual |
Returns the optional tile buffer size in pixels.
This represents the size to buffer individual resampled tile requests prior to resampling, in order to avoid rendering artifacts at the edges of raster tile boundaries.
Reimplemented in QgsCubicRasterResampler, and QgsBilinearRasterResampler.
Definition at line 85 of file qgsrasterresampler.h.
|
pure virtual |
Gets a descriptive type identifier for this raster resampler.
Needs to be implemented by subclasses.
Implemented in QgsCubicRasterResampler, and QgsBilinearRasterResampler.