18#ifndef QGSBILINEARRASTERRESAMPLER_H 
   19#define QGSBILINEARRASTERRESAMPLER_H 
   44    QImage 
resampleV2( 
const QImage &source, 
const QSize &size ) 
override;
 
   45    QString 
type() 
const override;
 
   47    int tileBufferPixels() const override;
 
 
Bilinear raster resampler.
 
QgsBilinearRasterResampler()=default
 
Interface for resampling rasters (V2) (e.g.
 
virtual QImage resampleV2(const QImage &source, const QSize &size)=0
Resamples a source image to the specified size.
 
virtual Q_DECL_DEPRECATED void resample(const QImage &srcImage, QImage &dstImage)=0
Resamples a source image to a destination image.
 
virtual QString type() const =0
Gets a descriptive type identifier for this raster resampler.
 
virtual QgsRasterResampler * clone() const =0
Gets a deep copy of this object.