QGIS API Documentation
3.14.0-Pi (9f7028fd23)
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
w
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
z
Variables
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
2
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
2
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
c
e
f
g
h
k
l
m
o
p
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Related Functions
a
c
d
e
f
g
i
l
m
n
o
p
q
r
s
t
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
l
n
o
p
q
r
s
t
u
w
Typedefs
a
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
Enumerator
Macros
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
w
y
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
core
raster
qgsrasterresampler.h
Go to the documentation of this file.
1
/***************************************************************************
2
qgsrasterresampler.h
3
--------------------
4
begin : December 2011
5
copyright : (C) 2011 by Marco Hugentobler
6
email : marco at sourcepole dot ch
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
#ifndef QGSRASTERRESAMPLER_H
19
#define QGSRASTERRESAMPLER_H
20
21
#include <QString>
22
#include "qgis_core.h"
23
#include "
qgis_sip.h
"
24
25
class
QString;
26
class
QImage;
27
class
QSize;
28
33
class
CORE_EXPORT
QgsRasterResampler
34
{
35
#ifdef SIP_RUN
36
#include "
qgsbilinearrasterresampler.h
"
37
#include "
qgscubicrasterresampler.h
"
38
#endif
39
40
41
#ifdef SIP_RUN
42
SIP_CONVERT_TO_SUBCLASS_CODE
43
if
(
dynamic_cast<
QgsBilinearRasterResampler
*
>
( sipCpp ) != NULL )
44
sipType = sipType_QgsBilinearRasterResampler;
45
else
if
(
dynamic_cast<
QgsCubicRasterResampler
*
>
( sipCpp ) != NULL )
46
sipType = sipType_QgsCubicRasterResampler;
47
else
48
sipType = 0;
49
SIP_END
50
#endif
51
52
public
:
53
virtual
~
QgsRasterResampler
() =
default
;
54
63
Q_DECL_DEPRECATED
virtual
void
resample(
const
QImage &srcImage, QImage &dstImage ) = 0
SIP_DEPRECATED
;
64
69
virtual
QString type()
const
= 0;
70
76
virtual
QgsRasterResampler
*clone()
const
= 0
SIP_FACTORY
;
77
85
virtual
int
tileBufferPixels
()
const
{
return
0; }
86
};
87
88
96
class
CORE_EXPORT
QgsRasterResamplerV2
:
public
QgsRasterResampler
97
{
98
public
:
99
105
virtual
QImage resampleV2(
const
QImage &source,
const
QSize &size ) = 0;
106
107
};
108
109
#endif // QGSRASTERRESAMPLER_H
qgsbilinearrasterresampler.h
QgsRasterResampler::tileBufferPixels
virtual int tileBufferPixels() const
Returns the optional tile buffer size in pixels.
Definition:
qgsrasterresampler.h:85
QgsRasterResampler
Definition:
qgsrasterresampler.h:33
qgscubicrasterresampler.h
QgsBilinearRasterResampler
Definition:
qgsbilinearrasterresampler.h:33
SIP_FACTORY
#define SIP_FACTORY
Definition:
qgis_sip.h:76
SIP_DEPRECATED
#define SIP_DEPRECATED
Definition:
qgis_sip.h:106
SIP_CONVERT_TO_SUBCLASS_CODE
#define SIP_CONVERT_TO_SUBCLASS_CODE(code)
Definition:
qgis_sip.h:172
QgsRasterResamplerV2
Definition:
qgsrasterresampler.h:96
qgis_sip.h
QgsCubicRasterResampler
Definition:
qgscubicrasterresampler.h:32
SIP_END
#define SIP_END
Definition:
qgis_sip.h:189
Generated on Mon Jun 22 2020 05:14:09 for QGIS API Documentation by
1.8.17