File: image_tiff_test.py

package info (click to toggle)
python-mapnik 1%3A0.0~20240222-5ab32f020-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,364 kB
  • sloc: python: 11,685; cpp: 5,776; sh: 242; makefile: 10
file content (401 lines) | stat: -rw-r--r-- 19,226 bytes parent folder | download
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
import os
import hashlib
import mapnik
import pytest
from .utilities import READ_FLAGS, execution_path

@pytest.fixture(scope="module")
def setup():
    # All of the paths used are relative, if we run the tests
    # from another directory we need to chdir()
    os.chdir(execution_path('.'))
    yield

def hashstr(var):
    return hashlib.md5(var).hexdigest()

@pytest.mark.xfail(strict=False, reason="Fails on big-endian")
def test_tiff_round_trip_scanline(setup):
    filepath = '/tmp/mapnik-tiff-io-scanline.tiff'
    im = mapnik.Image(255, 267)
    im.fill(mapnik.Color('rgba(12,255,128,.5)'))
    org_str = hashstr(im.tostring())
    im.save(filepath, 'tiff:method=scanline')
    im2 = mapnik.Image.open(filepath)
    with open(filepath, READ_FLAGS) as f:
        im3 = mapnik.Image.fromstring(f.read())
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert im.width() ==  im3.width()
    assert im.height() ==  im3.height()
    assert hashstr(im.tostring()) ==  org_str
    # This won't be the same the first time around because the im is not
    # premultiplied and im2 is
    assert not hashstr(im.tostring()) == hashstr(im2.tostring())
    assert not hashstr(im.tostring('tiff:method=scanline')) == hashstr(im2.tostring('tiff:method=scanline'))
    # Now premultiply
    im.premultiply()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=scanline')) == hashstr(im2.tostring('tiff:method=scanline'))
    assert hashstr(im2.tostring()) ==  hashstr(im3.tostring())
    assert hashstr(im2.tostring('tiff:method=scanline')) == hashstr(im3.tostring('tiff:method=scanline'))


@pytest.mark.xfail(strict=False, reason="Fails on big-endian")
def test_tiff_round_trip_stripped():
    filepath = '/tmp/mapnik-tiff-io-stripped.tiff'
    im = mapnik.Image(255, 267)
    im.fill(mapnik.Color('rgba(12,255,128,.5)'))
    org_str = hashstr(im.tostring())
    im.save(filepath, 'tiff:method=stripped')
    im2 = mapnik.Image.open(filepath)
    im2.save('/tmp/mapnik-tiff-io-stripped2.tiff', 'tiff:method=stripped')
    with open(filepath, READ_FLAGS) as f:
        im3 = mapnik.Image.fromstring(f.read())
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert im.width() ==  im3.width()
    assert im.height() ==  im3.height()
    # Because one will end up with UNASSOC alpha tag which internally the TIFF reader will premultiply, the first to string will not be the same due to the
    # difference in tags.
    assert not hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert not hashstr(im.tostring('tiff:method=stripped')) ==  hashstr(im2.tostring('tiff:method=stripped'))
    # Now if we premultiply they will be exactly the same
    im.premultiply()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=stripped')) == hashstr(im2.tostring('tiff:method=stripped'))
    assert hashstr(im2.tostring()) ==  hashstr(im3.tostring())
    # Both of these started out premultiplied, so this round trip should be
    # exactly the same!
    assert hashstr(im2.tostring('tiff:method=stripped')) == hashstr(im3.tostring('tiff:method=stripped'))


@pytest.mark.xfail(strict=False, reason="Fails on big-endian")
def test_tiff_round_trip_rows_stripped():
    filepath = '/tmp/mapnik-tiff-io-rows_stripped.tiff'
    filepath2 = '/tmp/mapnik-tiff-io-rows_stripped2.tiff'
    im = mapnik.Image(255, 267)
    im.fill(mapnik.Color('rgba(12,255,128,.5)'))
    c = im.get_pixel(0, 0, True)
    assert c.r ==  12
    assert c.g ==  255
    assert c.b ==  128
    assert c.a ==  128
    assert c.get_premultiplied() ==  False
    im.save(filepath, 'tiff:method=stripped:rows_per_strip=8')
    im2 = mapnik.Image.open(filepath)
    c2 = im2.get_pixel(0, 0, True)
    assert c2.r ==  6
    assert c2.g ==  128
    assert c2.b ==  64
    assert c2.a ==  128
    assert c2.get_premultiplied() ==  True
    im2.save(filepath2, 'tiff:method=stripped:rows_per_strip=8')
    with open(filepath, READ_FLAGS) as f:
        im3 = mapnik.Image.fromstring(f.read())
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert im.width() ==  im3.width()
    assert im.height() ==  im3.height()
    # Because one will end up with UNASSOC alpha tag which internally the TIFF reader will premultiply, the first to string will not be the same due to the
    # difference in tags.
    assert not hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert not hashstr(im.tostring('tiff:method=stripped:rows_per_strip=8')) ==  hashstr(
        im2.tostring('tiff:method=stripped:rows_per_strip=8'))
    # Now premultiply the first image and they will be the same!
    im.premultiply()
    assert hashstr(im.tostring('tiff:method=stripped:rows_per_strip=8')) == hashstr(im2.tostring('tiff:method=stripped:rows_per_strip=8'))
    assert hashstr(im2.tostring()) ==  hashstr(im3.tostring())
    # Both of these started out premultiplied, so this round trip should be
    # exactly the same!
    assert hashstr(im2.tostring('tiff:method=stripped:rows_per_strip=8')) == hashstr(im3.tostring('tiff:method=stripped:rows_per_strip=8'))


@pytest.mark.xfail(strict=False, reason="Fails on big-endian")
def test_tiff_round_trip_buffered_tiled():
    filepath = '/tmp/mapnik-tiff-io-buffered-tiled.tiff'
    filepath2 = '/tmp/mapnik-tiff-io-buffered-tiled2.tiff'
    filepath3 = '/tmp/mapnik-tiff-io-buffered-tiled3.tiff'
    im = mapnik.Image(255, 267)
    im.fill(mapnik.Color('rgba(33,255,128,.5)'))
    c = im.get_pixel(0, 0, True)
    assert c.r ==  33
    assert c.g ==  255
    assert c.b ==  128
    assert c.a ==  128
    assert not c.get_premultiplied()
    im.save(filepath, 'tiff:method=tiled:tile_width=32:tile_height=32')
    im2 = mapnik.Image.open(filepath)
    c2 = im2.get_pixel(0, 0, True)
    assert c2.r ==  17
    assert c2.g ==  128
    assert c2.b ==  64
    assert c2.a ==  128
    assert c2.get_premultiplied()
    with open(filepath, READ_FLAGS) as f:
        im3 = mapnik.Image.fromstring(f.read())
    im2.save(filepath2, 'tiff:method=tiled:tile_width=32:tile_height=32')
    im3.save(filepath3, 'tiff:method=tiled:tile_width=32:tile_height=32')
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert im.width() ==  im3.width()
    assert im.height() ==  im3.height()
    # Because one will end up with UNASSOC alpha tag which internally the TIFF reader will premultiply, the first to string will not be the same due to the
    # difference in tags.
    assert not hashstr(im.tostring()) == hashstr(im2.tostring())
    assert not hashstr(im.tostring('tiff:method=tiled:tile_width=32:tile_height=32')) ==  hashstr(
        im2.tostring('tiff:method=tiled:tile_width=32:tile_height=32'))
    # Now premultiply the first image and they should be the same
    im.premultiply()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=tiled:tile_width=32:tile_height=32')) == hashstr(im2.tostring('tiff:method=tiled:tile_width=32:tile_height=32'))
    assert hashstr(im2.tostring()) ==  hashstr(im3.tostring())
    # Both of these started out premultiplied, so this round trip should be
    # exactly the same!
    assert hashstr(im2.tostring('tiff:method=tiled:tile_width=32:tile_height=32')) == hashstr(im3.tostring('tiff:method=tiled:tile_width=32:tile_height=32'))


@pytest.mark.xfail(strict=False, reason="Fails on big-endian")
def test_tiff_round_trip_tiled():
    filepath = '/tmp/mapnik-tiff-io-tiled.tiff'
    im = mapnik.Image(256, 256)
    im.fill(mapnik.Color('rgba(1,255,128,.5)'))
    im.save(filepath, 'tiff:method=tiled')
    im2 = mapnik.Image.open(filepath)
    with open(filepath, READ_FLAGS) as f:
        im3 = mapnik.Image.fromstring(f.read())
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert im.width() ==  im3.width()
    assert im.height() ==  im3.height()
    # Because one will end up with UNASSOC alpha tag which internally the TIFF reader will premultiply, the first to string will not be the same due to the
    # difference in tags.
    assert not hashstr(im.tostring()) == hashstr(im2.tostring())
    assert not hashstr(im.tostring('tiff:method=tiled')) ==  hashstr(im2.tostring('tiff:method=tiled'))
    # Now premultiply the first image and they will be exactly the same.
    im.premultiply()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=tiled')) == hashstr(im2.tostring('tiff:method=tiled'))
    assert hashstr(im2.tostring()) ==  hashstr(im3.tostring())
    # Both of these started out premultiplied, so this round trip should be
    # exactly the same!
    assert hashstr(im2.tostring('tiff:method=tiled')) == hashstr(im3.tostring('tiff:method=tiled'))


def test_tiff_rgb8_compare():
    if not os.path.exists('../data/tiff/ndvi_256x256_rgb8_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_rgb8_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-rgb8.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff')) ==  hashstr(im2.tostring('tiff'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.rgba8).tostring("tiff"))


def test_tiff_rgba8_compare_scanline():
    if not os.path.exists('../data/tiff/ndvi_256x256_rgba8_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_rgba8_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-rgba8-scanline.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff:method=scanline')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=scanline')) == hashstr(im2.tostring('tiff:method=scanline'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.rgba8).tostring("tiff"))


def test_tiff_rgba8_compare_stripped():
    if not os.path.exists('../data/tiff/ndvi_256x256_rgba8_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_rgba8_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-rgba8-stripped.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff:method=stripped')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=stripped')) == hashstr(im2.tostring('tiff:method=stripped'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.rgba8).tostring("tiff"))


def test_tiff_rgba8_compare_tiled():
    if not os.path.exists('../data/tiff/ndvi_256x256_rgba8_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_rgba8_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-rgba8-tiled.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff:method=tiled')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=tiled')) == hashstr(im2.tostring('tiff:method=tiled'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.rgba8).tostring("tiff"))


def test_tiff_gray8_compare_scanline():
    if not os.path.exists('../data/tiff/ndvi_256x256_gray8_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_gray8_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-gray8-scanline.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff:method=scanline')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=scanline')) == hashstr(im2.tostring('tiff:method=scanline'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.gray8).tostring("tiff"))

def test_tiff_gray8_compare_stripped():
    if not os.path.exists('../data/tiff/ndvi_256x256_gray8_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_gray8_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-gray8-stripped.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff:method=stripped')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=stripped')) == hashstr(im2.tostring('tiff:method=stripped'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.gray8).tostring("tiff"))


def test_tiff_gray8_compare_tiled():
    if not os.path.exists('../data/tiff/ndvi_256x256_gray8_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_gray8_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-gray8-tiled.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff:method=tiled')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=tiled')) == hashstr(im2.tostring('tiff:method=tiled'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.gray8).tostring("tiff"))


def test_tiff_gray16_compare_scanline():
    if not os.path.exists('../data/tiff/ndvi_256x256_gray16_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_gray16_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-gray16-scanline.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff:method=scanline')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=scanline')) == hashstr(im2.tostring('tiff:method=scanline'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.gray16).tostring("tiff"))

def test_tiff_gray16_compare_stripped():
    if not os.path.exists('../data/tiff/ndvi_256x256_gray16_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_gray16_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-gray16-stripped.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff:method=stripped')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=stripped')) == hashstr(im2.tostring('tiff:method=stripped'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.gray16).tostring("tiff"))


def test_tiff_gray16_compare_tiled():
    if not os.path.exists('../data/tiff/ndvi_256x256_gray16_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_gray16_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-gray16-tiled.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff:method=tiled')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=tiled')) == hashstr(im2.tostring('tiff:method=tiled'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.gray16).tostring("tiff"))


def test_tiff_gray32f_compare_scanline():
    if not os.path.exists('../data/tiff/ndvi_256x256_gray32f_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_gray32f_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-gray32f-scanline.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff:method=scanline')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=scanline')) == hashstr(im2.tostring('tiff:method=scanline'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.gray32f).tostring("tiff"))


def test_tiff_gray32f_compare_stripped():
    if not os.path.exists('../data/tiff/ndvi_256x256_gray32f_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_gray32f_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-gray32f-stripped.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff:method=stripped')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=stripped')) == hashstr(im2.tostring('tiff:method=stripped'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.gray32f).tostring("tiff"))


def test_tiff_gray32f_compare_tiled():
    if not os.path.exists('../data/tiff/ndvi_256x256_gray32f_striped.tif'):
        pytest.skip('Missing data')

    filepath1 = '../data/tiff/ndvi_256x256_gray32f_striped.tif'
    filepath2 = '/tmp/mapnik-tiff-gray32f-tiled.tiff'
    im = mapnik.Image.open(filepath1)
    im.save(filepath2, 'tiff:method=tiled')
    im2 = mapnik.Image.open(filepath2)
    assert im.width() ==  im2.width()
    assert im.height() ==  im2.height()
    assert hashstr(im.tostring()) ==  hashstr(im2.tostring())
    assert hashstr(im.tostring('tiff:method=tiled')) == hashstr(im2.tostring('tiff:method=tiled'))
    # should not be a blank image
    assert hashstr(im.tostring("tiff")) != hashstr(mapnik.Image(im.width(), im.height(), mapnik.ImageType.gray32f).tostring("tiff"))