FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-mapnik/src/mapnik_image.cpp at master · mapnik/python-mapnik · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
mapnik
/
python-mapnik
Public
Notifications
You must be signed in to change notification settings
Fork
92
Star
173
Code
Issues
132
Pull requests
17
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-mapnik
/
src
/
mapnik_image.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
447 lines (403 loc) · 14.9 KB
Breadcrumbs
python-mapnik
/
src
/
mapnik_image.cpp
Copy path
File metadata and controls
447 lines (403 loc) · 14.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
/*
****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2024 Artem Pavlenko
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
****************************************************************************
*/
//
mapnik
#
include
<
mapnik/config.hpp
>
#
include
<
mapnik/color.hpp
>
#
include
<
mapnik/palette.hpp
>
#
include
<
mapnik/image_util.hpp
>
#
include
<
mapnik/image_copy.hpp
>
#
include
<
mapnik/image_reader.hpp
>
#
include
<
mapnik/image_compositing.hpp
>
#
include
<
mapnik/image_view_any.hpp
>
//
stl
#
include
<
type_traits
>
//
pybind11
#
include
<
pybind11/pybind11.h
>
#
include
<
pybind11/operators.h
>
#
include
<
pybind11/native_enum.h
>
using
mapnik::image_any;
using
mapnik::image_reader;
using
mapnik::get_image_reader;
using
mapnik::type_from_filename;
using
mapnik::save_to_file;
namespace
py
=
pybind11;
namespace
{
//
output 'raw' pixels
py::object
to_string1
(image_any
const
& im)
{
return
py::bytes
(
reinterpret_cast
<
const
char
*>(im.
bytes
()), im.
size
());
}
//
encode (png,jpeg)
py::object
to_string2
(image_any
const
& im, std::string
const
& format)
{
std::string s =
mapnik::save_to_string
(im, format);
return
py::bytes
(s.
data
(), s.
length
());
}
py::object
to_string3
(image_any
const
& im, std::string
const
& format, mapnik::rgba_palette
const
& pal)
{
std::string s =
mapnik::save_to_string
(im, format, pal);
return
py::bytes
(s.
data
(), s.
length
());
}
void
save_to_file1
(mapnik::image_any
const
& im, std::string
const
& filename)
{
save_to_file
(im,filename);
}
void
save_to_file2
(mapnik::image_any
const
& im, std::string
const
& filename, std::string
const
& type)
{
save_to_file
(im,filename,type);
}
void
save_to_file3
(mapnik::image_any
const
& im, std::string
const
& filename, std::string
const
& type, mapnik::rgba_palette
const
& pal)
{
save_to_file
(im,filename,type,pal);
}
mapnik::image_view_any
get_view
(mapnik::image_any
const
& data,
unsigned
x,
unsigned
y,
unsigned
w,
unsigned
h)
{
return
mapnik::create_view
(data,x,y,w,h);
}
bool
is_solid
(mapnik::image_any
const
& im)
{
return
mapnik::is_solid
(im);
}
void
fill_color
(mapnik::image_any & im, mapnik::color
const
& c)
{
mapnik::fill
(im, c);
}
void
fill_int
(mapnik::image_any & im,
int
val)
{
mapnik::fill
(im, val);
}
void
fill_double
(mapnik::image_any & im,
double
val)
{
mapnik::fill
(im, val);
}
std::shared_ptr<image_any>
copy
(mapnik::image_any
const
& im, mapnik::image_dtype type,
double
offset,
double
scaling)
{
return
std::make_shared<image_any>(
mapnik::image_copy
(im, type, offset, scaling));
}
std::
size_t
compare
(mapnik::image_any
const
& im1, mapnik::image_any
const
& im2,
double
threshold,
bool
alpha)
{
return
mapnik::compare
(im1, im2, threshold, alpha);
}
struct
get_pixel_visitor
{
get_pixel_visitor
(
unsigned
x,
unsigned
y)
: x_(x), y_(y) {}
py::object
operator
() (mapnik::image_null
const
&)
{
throw
std::runtime_error
(
"
Can not return a null image from a pixel (shouldn't have reached here)
"
);
}
template
<
typename
T>
py::object
operator
() (T
const
& im)
{
using
pixel_type =
typename
T::pixel_type;
using
python_type =
typename
std::conditional<std::is_integral<pixel_type>::value, py::int_, py::float_>::type;
return
python_type
(mapnik::get_pixel<pixel_type>(im, x_, y_));
}
private:
unsigned
x_;
unsigned
y_;
};
py::object
get_pixel
(mapnik::image_any
const
& im,
int
x,
int
y)
{
if
(x <
0
|| x >=
static_cast
<
int
>(im.
width
()) ||
y <
0
|| y >=
static_cast
<
int
>(im.
height
()))
{
throw
std::out_of_range
(
"
invalid x,y for image dimensions
"
);
}
return
mapnik::util::apply_visitor
(
get_pixel_visitor
(x, y), im);
}
mapnik::color
get_pixel_color
(mapnik::image_any
const
& im,
int
x,
int
y)
{
if
(x <
0
|| x >=
static_cast
<
int
>(im.
width
()) ||
y <
0
|| y >=
static_cast
<
int
>(im.
height
()))
{
throw
std::out_of_range
(
"
invalid x,y for image dimensions
"
);
}
return
mapnik::get_pixel<mapnik::color>(im, x, y);
}
template
<
typename
T>
void
set_pixel
(mapnik::image_any & im,
int
x,
int
y, T c)
{
if
(x <
0
|| x >=
static_cast
<
int
>(im.
width
()) ||
y <
0
|| y >=
static_cast
<
int
>(im.
height
()))
{
throw
std::out_of_range
(
"
invalid x,y for image dimensions
"
);
}
mapnik::set_pixel
(im, x, y, c);
}
mapnik::image_dtype
get_type
(mapnik::image_any & im)
{
return
im.
get_dtype
();
}
std::shared_ptr<image_any>
open_from_file
(std::string
const
& filename)
{
auto
type =
type_from_filename
(filename);
if
(type)
{
std::unique_ptr<image_reader>
reader
(
get_image_reader
(filename,*type));
if
(reader.
get
())
{
return
std::make_shared<image_any>(reader->
read
(
0
,
0
,reader->
width
(),reader->
height
()));
}
throw
mapnik::image_reader_exception
(
"
Failed to load:
"
+ filename);
}
throw
mapnik::image_reader_exception
(
"
Unsupported image format:
"
+ filename);
}
std::shared_ptr<image_any>
open_from_file2
(py::args
const
& args)
{
auto
filename = args[
0
].
cast
<std::string>();
std::
uint32_t
x0 = args[
1
].
cast
<std::
uint32_t
>();
std::
uint32_t
y0 = args[
2
].
cast
<std::
uint32_t
>();
std::
uint32_t
width = args[
3
].
cast
<std::
uint32_t
>();
std::
uint32_t
height = args[
4
].
cast
<std::
uint32_t
>();
auto
type =
type_from_filename
(filename);
if
(type)
{
std::unique_ptr<image_reader>
reader
(
get_image_reader
(filename,*type));
if
(reader.
get
())
{
return
std::make_shared<image_any>(reader->
read
(x0, y0, width, height));
}
throw
mapnik::image_reader_exception
(
"
Failed to load:
"
+ filename);
}
throw
mapnik::image_reader_exception
(
"
Unsupported image format:
"
+ filename);
}
std::shared_ptr<image_any>
from_string
(std::string
const
& str)
{
std::unique_ptr<image_reader>
reader
(
get_image_reader
(str.
c_str
(),str.
size
()));
if
(reader.
get
())
{
return
std::make_shared<image_any>(reader->
read
(
0
,
0
,reader->
width
(), reader->
height
()));
}
throw
mapnik::image_reader_exception
(
"
Failed to load image from String
"
);
}
std::shared_ptr<image_any>
from_buffer
(py::bytes
const
& obj)
{
std::string_view view =
std::string_view
(obj);
std::unique_ptr<image_reader> reader
(
get_image_reader
(
reinterpret_cast
<
char
const
*>(view.
data
()), view.
length
()));
if
(reader.
get
())
{
return
std::make_shared<image_any>(reader->
read
(
0
,
0
, reader->
width
(), reader->
height
()));
}
throw
mapnik::image_reader_exception
(
"
Failed to load image from Buffer
"
);
}
std::shared_ptr<image_any>
from_memoryview
(py::memoryview
const
& memview)
{
auto
buf =
py::buffer
(memview);
py::buffer_info info = buf.
request
();
std::unique_ptr<image_reader> reader
(
get_image_reader
(
reinterpret_cast
<
char
const
*>(info.
ptr
), info.
size
));
if
(reader.
get
())
{
return
std::make_shared<image_any>(reader->
read
(
0
,
0
, reader->
width
(), reader->
height
()));
}
throw
mapnik::image_reader_exception
(
"
Failed to load image from Buffer
"
);
}
void
set_grayscale_to_alpha
(image_any & im)
{
mapnik::set_grayscale_to_alpha
(im);
}
void
set_grayscale_to_alpha_c
(image_any & im, mapnik::color
const
& c)
{
mapnik::set_grayscale_to_alpha
(im, c);
}
void
set_color_to_alpha
(image_any & im, mapnik::color
const
& c)
{
mapnik::set_color_to_alpha
(im, c);
}
void
apply_opacity
(image_any & im,
float
opacity)
{
mapnik::apply_opacity
(im, opacity);
}
bool
premultiplied
(image_any &im)
{
return
im.
get_premultiplied
();
}
bool
premultiply
(image_any & im)
{
return
mapnik::premultiply_alpha
(im);
}
bool
demultiply
(image_any & im)
{
return
mapnik::demultiply_alpha
(im);
}
void
clear
(image_any & im)
{
mapnik::fill
(im,
0
);
}
void
composite
(image_any & dst, image_any & src, mapnik::composite_mode_e mode,
float
opacity,
int
dx,
int
dy)
{
bool
demultiply_dst =
mapnik::premultiply_alpha
(dst);
bool
demultiply_src =
mapnik::premultiply_alpha
(src);
mapnik::composite
(dst,src,mode,opacity,dx,dy);
if
(demultiply_dst)
{
mapnik::demultiply_alpha
(dst);
}
if
(demultiply_src)
{
mapnik::demultiply_alpha
(src);
}
}
std::shared_ptr<image_any>
from_cairo
(py::object
const
& surface)
{
py::object ImageSurface =
py::module_::import
(
"
cairo
"
).
attr
(
"
ImageSurface
"
);
py::object get_width = ImageSurface.
attr
(
"
get_width
"
);
py::object get_height = ImageSurface.
attr
(
"
get_height
"
);
py::object get_format = ImageSurface.
attr
(
"
get_format
"
);
py::object get_data = ImageSurface.
attr
(
"
get_data
"
);
int
format =
py::int_
(
get_format
(surface));
int
width =
py::int_
(
get_width
(surface));
int
height =
py::int_
(
get_height
(surface));
if
(format ==
0
)
//
cairo.Format.ARGB32
{
mapnik::image_rgba8 image{width, height};
py::memoryview view =
get_data
(surface);
auto
buf =
py::buffer
(view);
py::buffer_info info = buf.
request
();
const
std::unique_ptr<
unsigned
int
[]>
out_row
(
new
unsigned
int
[width]);
unsigned
int
const
* in_row =
reinterpret_cast
<
unsigned
int
const
*>(info.
ptr
);
for
(
int
row =
0
; row < height; row++, in_row += width)
{
for
(
int
column =
0
; column < width; column++)
{
unsigned
int
in = in_row[column];
unsigned
int
a = (in >>
24
) &
0xff
;
unsigned
int
r = (in >>
16
) &
0xff
;
unsigned
int
g = (in >>
8
) &
0xff
;
unsigned
int
b = (in >>
0
) &
0xff
;
out_row[column] =
mapnik::color
(r, g, b, a).
rgba
();
}
image.
set_row
(row, out_row.
get
(), width);
}
return
std::make_shared<image_any>(
std::move
(image));
}
else
if
(format ==
1
)
//
cairo.Format.RGB24
{
mapnik::image_rgba8 image{width, height};
py::memoryview view =
get_data
(surface);
auto
buf =
py::buffer
(view);
py::buffer_info info = buf.
request
();
const
std::unique_ptr<
unsigned
int
[]>
out_row
(
new
unsigned
int
[width]);
unsigned
int
const
* in_row =
reinterpret_cast
<
unsigned
int
const
*>(info.
ptr
);
for
(
int
row =
0
; row < height; row++, in_row += width)
{
for
(
int
column =
0
; column < width; column++)
{
unsigned
int
in = in_row[column];
unsigned
int
r = (in >>
16
) &
0xff
;
unsigned
int
g = (in >>
8
) &
0xff
;
unsigned
int
b = (in >>
0
) &
0xff
;
out_row[column] =
mapnik::color
(r, g, b,
255
).
rgba
();
}
image.
set_row
(row, out_row.
get
(), width);
}
return
std::make_shared<image_any>(
std::move
(image));
}
throw
std::runtime_error
(
"
Unable to convert this Cairo format to rgba8 image
"
);
}
}
//
namespace
void
export_image
(py::
module
const
& m)
{
py::native_enum<mapnik::image_dtype>(m,
"
ImageType
"
,
"
enum.Enum
"
)
.
value
(
"
rgba8
"
, mapnik::image_dtype_rgba8)
.
value
(
"
gray8
"
, mapnik::image_dtype_gray8)
.
value
(
"
gray8s
"
, mapnik::image_dtype_gray8s)
.
value
(
"
gray16
"
, mapnik::image_dtype_gray16)
.
value
(
"
gray16s
"
, mapnik::image_dtype_gray16s)
.
value
(
"
gray32
"
, mapnik::image_dtype_gray32)
.
value
(
"
gray32s
"
, mapnik::image_dtype_gray32s)
.
value
(
"
gray32f
"
, mapnik::image_dtype_gray32f)
.
value
(
"
gray64
"
, mapnik::image_dtype_gray64)
.
value
(
"
gray64s
"
, mapnik::image_dtype_gray64s)
.
value
(
"
gray64f
"
, mapnik::image_dtype_gray64f)
.
finalize
()
;
py::class_<image_any,std::shared_ptr<image_any>>(m,
"
Image
"
,
"
This class represents a image.
"
)
.
def
(py::init<
int
,
int
>())
.
def
(py::init<
int
,
int
,mapnik::image_dtype>())
.
def
(py::init<
int
,
int
,mapnik::image_dtype,
bool
>())
.
def
(py::init<
int
,
int
,mapnik::image_dtype,
bool
,
bool
>())
.
def
(py::init<
int
,
int
,mapnik::image_dtype,
bool
,
bool
,
bool
>())
.
def
(
"
width
"
,&image_any::width)
.
def
(
"
height
"
,&image_any::height)
.
def
(
"
view
"
,&get_view)
.
def
(
"
painted
"
,&image_any::painted)
.
def
(
"
is_solid
"
,&is_solid)
.
def
(
"
fill
"
,&fill_color)
.
def
(
"
fill
"
,&fill_int)
.
def
(
"
fill
"
,&fill_double)
.
def
(
"
set_grayscale_to_alpha
"
,&set_grayscale_to_alpha,
"
Set the grayscale values to the alpha channel of the Image
"
)
.
def
(
"
set_grayscale_to_alpha
"
,&set_grayscale_to_alpha_c,
"
Set the grayscale values to the alpha channel of the Image
"
)
.
def
(
"
set_color_to_alpha
"
,&set_color_to_alpha,
"
Set a given color to the alpha channel of the Image
"
)
.
def
(
"
apply_opacity
"
,&apply_opacity,
"
Set the opacity of the Image relative to the current alpha of each pixel.
"
)
.
def
(
"
composite
"
,&composite,
py::arg
(
"
image
"
),
py::arg
(
"
mode
"
) = mapnik::src_over,
py::arg
(
"
opacity
"
) =
1
.
0f
,
py::arg
(
"
dx
"
) =
0
,
py::arg
(
"
dy
"
) =
0
)
.
def
(
"
compare
"
,&compare,
py::arg
(
"
image
"
),
py::arg
(
"
threshold
"
)=
0.0
,
py::arg
(
"
alpha
"
)=
true
)
.
def
(
"
copy
"
,©,
py::arg
(
"
type
"
),
py::arg
(
"
offset
"
)=
0.0
,
py::arg
(
"
scaling
"
)=
1.0
)
.
def_property
(
"
offset
"
,
&image_any::get_offset,
&image_any::set_offset,
"
Gets or sets the offset component.
\n
"
)
.
def_property
(
"
scaling
"
,
&image_any::get_scaling,
&image_any::set_scaling,
"
Gets or sets the offset component.
\n
"
)
.
def
(
"
premultiplied
"
,&premultiplied)
.
def
(
"
premultiply
"
,&premultiply)
.
def
(
"
demultiply
"
,&demultiply)
.
def
(
"
set_pixel
"
,&set_pixel<mapnik::color>)
.
def
(
"
set_pixel
"
,&set_pixel<
double
>)
.
def
(
"
set_pixel
"
,&set_pixel<
int
>)
.
def
(
"
get_pixel_color
"
,&get_pixel_color,
py::arg
(
"
x
"
),
py::arg
(
"
y
"
))
.
def
(
"
get_pixel
"
, &get_pixel)
.
def
(
"
get_type
"
,&get_type)
.
def
(
"
clear
"
,&clear)
.
def
(
"
to_string
"
,&to_string1)
.
def
(
"
to_string
"
,&to_string2)
.
def
(
"
to_string
"
,&to_string3)
.
def
(
"
save
"
, &save_to_file1)
.
def
(
"
save
"
, &save_to_file2)
.
def
(
"
save
"
, &save_to_file3)
.
def_static
(
"
open
"
,open_from_file)
.
def_static
(
"
open
"
,open_from_file2)
.
def_static
(
"
from_buffer
"
,&from_buffer)
.
def_static
(
"
from_memoryview
"
,&from_memoryview)
.
def_static
(
"
from_string
"
,&from_string)
.
def_static
(
"
from_cairo
"
,&from_cairo)
;
}
Back
|
FazBrowse Home
|
New Git URL