Glymur 0.8.8__tar.gz → 0.13.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. glymur-0.13.8/CHANGES.txt +446 -0
  2. glymur-0.13.8/Glymur.egg-info/PKG-INFO +31 -0
  3. glymur-0.13.8/Glymur.egg-info/SOURCES.txt +53 -0
  4. {usr/lib/python3.5/site-packages/Glymur-0.8.8-py3.5.egg-info → glymur-0.13.8/Glymur.egg-info}/entry_points.txt +1 -1
  5. glymur-0.13.8/Glymur.egg-info/not-zip-safe +1 -0
  6. glymur-0.13.8/Glymur.egg-info/requires.txt +8 -0
  7. glymur-0.13.8/LICENSE.txt +21 -0
  8. glymur-0.13.8/MANIFEST.in +4 -0
  9. glymur-0.13.8/PKG-INFO +31 -0
  10. glymur-0.13.8/README.md +8 -0
  11. glymur-0.13.8/glymur/__init__.py +20 -0
  12. glymur-0.13.8/glymur/_iccprofile.py +127 -0
  13. {usr/lib/python3.5/site-packages → glymur-0.13.8}/glymur/codestream.py +778 -553
  14. glymur-0.13.8/glymur/command_line.py +233 -0
  15. glymur-0.13.8/glymur/config.py +156 -0
  16. {usr/lib/python3.5/site-packages → glymur-0.13.8}/glymur/core.py +19 -24
  17. {usr/lib/python3.5/site-packages → glymur-0.13.8}/glymur/data/__init__.py +6 -9
  18. {usr/lib/python3.5/site-packages → glymur-0.13.8}/glymur/data/nemo.jp2 +0 -0
  19. {usr/lib/python3.5/site-packages → glymur-0.13.8}/glymur/jp2box.py +1456 -1183
  20. glymur-0.13.8/glymur/jp2k.py +1488 -0
  21. glymur-0.13.8/glymur/jp2kr.py +984 -0
  22. {usr/lib/python3.5/site-packages → glymur-0.13.8}/glymur/lib/__init__.py +3 -3
  23. {usr/lib/python3.5/site-packages → glymur-0.13.8}/glymur/lib/openjp2.py +510 -401
  24. glymur-0.13.8/glymur/lib/tiff.py +2048 -0
  25. glymur-0.13.8/glymur/options.py +171 -0
  26. glymur-0.13.8/glymur/tiff.py +1169 -0
  27. glymur-0.13.8/glymur/version.py +48 -0
  28. glymur-0.13.8/pyproject.toml +8 -0
  29. glymur-0.13.8/setup.cfg +62 -0
  30. glymur-0.13.8/tests/test_callbacks.py +96 -0
  31. glymur-0.13.8/tests/test_cinema.py +166 -0
  32. glymur-0.13.8/tests/test_codestream.py +314 -0
  33. glymur-0.13.8/tests/test_colour_specification_box.py +226 -0
  34. glymur-0.13.8/tests/test_config.py +336 -0
  35. glymur-0.13.8/tests/test_geo.py +205 -0
  36. glymur-0.13.8/tests/test_jp2box.py +1522 -0
  37. glymur-0.13.8/tests/test_jp2box_jpx.py +673 -0
  38. glymur-0.13.8/tests/test_jp2box_uuid.py +355 -0
  39. glymur-0.13.8/tests/test_jp2box_xml.py +287 -0
  40. glymur-0.13.8/tests/test_jp2k.py +1054 -0
  41. glymur-0.13.8/tests/test_jp2k_writes.py +1858 -0
  42. glymur-0.13.8/tests/test_jp2kr.py +971 -0
  43. glymur-0.13.8/tests/test_libtiff.py +212 -0
  44. glymur-0.13.8/tests/test_openjp2.py +631 -0
  45. glymur-0.13.8/tests/test_printing.py +1948 -0
  46. glymur-0.13.8/tests/test_set_decoded_components.py +202 -0
  47. glymur-0.13.8/tests/test_slicing.py +394 -0
  48. glymur-0.13.8/tests/test_threading.py +173 -0
  49. glymur-0.13.8/tests/test_tiff2jp2.py +1966 -0
  50. glymur-0.13.8/tests/test_warnings.py +840 -0
  51. usr/bin/jp2dump +0 -10
  52. usr/lib/python3.5/site-packages/Glymur-0.8.8-py3.5.egg-info/PKG-INFO +0 -31
  53. usr/lib/python3.5/site-packages/Glymur-0.8.8-py3.5.egg-info/SOURCES.txt +0 -28
  54. usr/lib/python3.5/site-packages/Glymur-0.8.8-py3.5.egg-info/requires.txt +0 -2
  55. usr/lib/python3.5/site-packages/glymur/__init__.py +0 -16
  56. usr/lib/python3.5/site-packages/glymur/__pycache__/__init__.cpython-35.pyc +0 -0
  57. usr/lib/python3.5/site-packages/glymur/__pycache__/_iccprofile.cpython-35.pyc +0 -0
  58. usr/lib/python3.5/site-packages/glymur/__pycache__/_tiff.cpython-35.pyc +0 -0
  59. usr/lib/python3.5/site-packages/glymur/__pycache__/codestream.cpython-35.pyc +0 -0
  60. usr/lib/python3.5/site-packages/glymur/__pycache__/command_line.cpython-35.pyc +0 -0
  61. usr/lib/python3.5/site-packages/glymur/__pycache__/config.cpython-35.pyc +0 -0
  62. usr/lib/python3.5/site-packages/glymur/__pycache__/core.cpython-35.pyc +0 -0
  63. usr/lib/python3.5/site-packages/glymur/__pycache__/jp2box.cpython-35.pyc +0 -0
  64. usr/lib/python3.5/site-packages/glymur/__pycache__/jp2k.cpython-35.pyc +0 -0
  65. usr/lib/python3.5/site-packages/glymur/__pycache__/version.cpython-35.pyc +0 -0
  66. usr/lib/python3.5/site-packages/glymur/_iccprofile.py +0 -127
  67. usr/lib/python3.5/site-packages/glymur/_tiff.py +0 -365
  68. usr/lib/python3.5/site-packages/glymur/command_line.py +0 -80
  69. usr/lib/python3.5/site-packages/glymur/config.py +0 -388
  70. usr/lib/python3.5/site-packages/glymur/data/__pycache__/__init__.cpython-35.pyc +0 -0
  71. usr/lib/python3.5/site-packages/glymur/jp2k.py +0 -1891
  72. usr/lib/python3.5/site-packages/glymur/lib/__pycache__/__init__.cpython-35.pyc +0 -0
  73. usr/lib/python3.5/site-packages/glymur/lib/__pycache__/openjp2.cpython-35.pyc +0 -0
  74. usr/lib/python3.5/site-packages/glymur/lib/__pycache__/openjpeg.cpython-35.pyc +0 -0
  75. usr/lib/python3.5/site-packages/glymur/lib/openjpeg.py +0 -587
  76. usr/lib/python3.5/site-packages/glymur/version.py +0 -71
  77. {usr/lib/python3.5/site-packages/Glymur-0.8.8-py3.5.egg-info → glymur-0.13.8/Glymur.egg-info}/dependency_links.txt +0 -0
  78. {usr/lib/python3.5/site-packages/Glymur-0.8.8-py3.5.egg-info → glymur-0.13.8/Glymur.egg-info}/top_level.txt +0 -0
  79. {usr/lib/python3.5/site-packages → glymur-0.13.8}/glymur/data/goodstuff.j2k +0 -0
  80. {usr/lib/python3.5/site-packages → glymur-0.13.8}/glymur/data/heliov.jpx +0 -0
@@ -0,0 +1,446 @@
1
+ Jan 14, 2025 - v0.13.8
2
+ Fix tiff2jp2 bug when stripped TIFF has no RowsPerStrip tag
3
+
4
+ Jan 15, 2025 - v0.13.7
5
+ Qualify on python 3.13
6
+ Fix test warnings due to scikit-image deprecation.
7
+ Update CI test matrix, tighten 3rd party library requirements.
8
+ Add ability to construct XML box from file-like object.
9
+ Add circle-ci CI.
10
+ Fix test suite for numpy 2.x printing (thanks to Arne Keller).
11
+
12
+ Aug 19, 2024 - v0.13.6
13
+ Fix tiff2jp2 when tile coverage not square.
14
+
15
+ July 26, 2024 - v0.13.5
16
+ Add support for parsing the CAP segment.
17
+ End official support for OpenJPEG 2.3.x.
18
+ Fix issue preventing API docs from building.
19
+
20
+ July 4, 2024 - v0.13.4
21
+ Don't reset openjpeg codec in Jp2k if already set in Jp2kr.
22
+ Update CI configuration to specify openjpeg versions.
23
+
24
+ June 30, 2024 - v0.13.3
25
+ Refactor parsing errors and warnings.
26
+ Update CI configuration for numpy 2.0.
27
+ Skip psnr doctest for numpy 2.0.
28
+ Fix test issue on s390x.
29
+ Refactor code pattern for finding first element.
30
+
31
+ May 07, 2024 - v0.13.2
32
+ Improve doctesting, fix broken libtiff doctest
33
+ Increase code coverage
34
+ Remove python 3.8 anachronisms
35
+ Fix repr for Jp2kr
36
+ Clean up ci directory
37
+ Change parsing of precinct sizes due to numpy 2.0
38
+
39
+ Apr 22, 2024 - v0.13.1
40
+ Remove debugging code
41
+ Improve code coverage
42
+
43
+ Apr 19, 2024 - v0.13.0
44
+ Refactor Jp2k class into Jp2k, Jp2kr
45
+ Simplify example file nemo.jp2
46
+ Fix doctests
47
+
48
+ Mar 16, 2024 - v0.12.9post2
49
+ Fix readthedocs builds
50
+
51
+ Nov 26, 2023 - v0.12.9post1
52
+ Fix setup.cfg for v0.12.9 release
53
+
54
+ Nov 26, 2023 - v0.12.9
55
+ Fix handling of null-bytes with XML data
56
+ Add API references to docs
57
+ Qualify on python 3.12
58
+
59
+ Jul 12, 2023 - v0.12.8
60
+ Fix printing issue on 3.12beta, Fedora rawhide
61
+
62
+ May 22, 2023 - v0.12.7
63
+ Fix failing test on fedora
64
+ Change private attribute to prevent downstream test failure with tiatoolbox
65
+
66
+ May 18, 2023 - v0.12.6post1
67
+ Fix release version
68
+
69
+ May 17, 2023 - v0.12.6
70
+ Fix conversion of uint16 TIFFs to single jp2 tile.
71
+ Fix command line arguments --psnr and --cratio.
72
+ Minor documentation updates.
73
+ Add --num-threads option to tiff2jp2.
74
+ Refactor GeoJP2 code to get support for GML-JP2.
75
+ Fix broken uint16 test.
76
+ Fix stripped tiff oddity with partial last strip.
77
+ Refactor RGBA interface.
78
+
79
+ May 03, 2023 - v0.12.5
80
+ Fix plane ordering on RGBA TIFFs on big-endian
81
+ Fix TIFF reads on partian final strips
82
+
83
+ April 26, 2023 - v0.12.4
84
+ Fix regression on default value of numres.
85
+
86
+ April 22, 2023 - v0.12.3
87
+ Add support for type hints.
88
+ Remove support for Python 3.8.
89
+
90
+ January 05, 2023 - v0.12.2
91
+ Fix error condition when MCT specified as false for grayscale image.
92
+ Make properties conform to numpydoc.
93
+ Fix YCbCr/JPEG TIFF conversion test failure on Fedora.
94
+ Stop using libtiff to create test files on the fly.
95
+
96
+ November 28, 2022 - v0.12.1
97
+ Do not error out for JP2 files with multiple codestreams.
98
+ Relax validation for invalid JP2 files with multiple jp2h boxes.
99
+ Drop support for python 3.7.
100
+
101
+ October 20, 2022 - v0.12.0
102
+ Add support for ICC profiles, colormaps when converting from TIFF.
103
+ Add shortcut for retrieving lowest resolution thumbnail.
104
+ Remove setuptools from runtime requirement.
105
+ Improve pretty-printing of Exif UUIDs, TLM segments.
106
+ Change default value of --create-xmp-uuid to True.
107
+ Minor bugfixes.
108
+
109
+ September 16, 2022 - v0.11.7
110
+ Error out early when writing 1x1 tile-by-tile
111
+
112
+ September 16, 2022 - v0.11.6post2
113
+ Do not install test, test.data packages
114
+
115
+ September 13, 2022 - v0.11.6post1
116
+ Fix Changelog regarding v0.11.6
117
+
118
+ September 12, 2022 - v0.11.6
119
+ Fix reads where COD segment not at index[2]
120
+ This fix not included in 0.11.5
121
+
122
+ September 7, 2022 - v0.11.5
123
+ Fix reads where COD segment not at index[2]
124
+
125
+ August 18, 2022 - v0.11.4
126
+ Fix ResolutionBox with tiff2jp2
127
+
128
+ August 16, 2022 - v0.11.3
129
+ Fix placement of Resolutionbox
130
+
131
+ August 9, 2022 - v0.11.2
132
+ Relax ResolutionBox requirement on child boxes.
133
+
134
+ August 6, 2022 - v0.11.1
135
+ Improve efficiency of striped TIFF to tiled JP2 conversion.
136
+
137
+ July 29, 2022 - v0.11.0
138
+ Add options for supporting ResolutionBoxes.
139
+ Fix ctypes interface to C library on windows.
140
+ Add option to convert XMLPacket into UUID box.
141
+ Add option for excluding tags from Exif UUID box.
142
+
143
+ July 16, 2022 - v0.10.2
144
+ Fix appveyor builds
145
+ Fix tiff2jp2 when ExifTag is present
146
+ Address warnings in TIFF interface
147
+ Update glymur.config documentation
148
+
149
+ June 28, 2022 - v0.10.1
150
+ Add write capability for Resolution boxes
151
+ Add example documentation for reading layers
152
+
153
+ June 15, 2022 - v0.10.0
154
+ Allow parsing of Exif UUIDs missing the EXIF\00\00 lead-in
155
+ Add read support for additional Exif tags
156
+ Add support for TLM segment generation
157
+
158
+ March 23, 2022 - v0.9.9
159
+ Fix bug retrieving some TIFF tags on big endian systems
160
+
161
+ March 5, 2022 - v0.9.8
162
+ Fix install requirements
163
+
164
+ January 9, 2022 - v0.9.7.post1
165
+ Fix setup.cfg issue
166
+
167
+ December 27, 2021 - v0.9.7
168
+ Remove distutils in favor of setuptools
169
+ Add recognition of IMF profiles
170
+ Add ndim, dtype properties
171
+
172
+ November 04, 2021 - v0.9.6
173
+ Fix tiff support on windows
174
+ Update doc support for python 3.10
175
+
176
+ November 03, 2021 - v0.9.5
177
+ Add support for generation of PLT markers
178
+ Add support for converting TIFFs to JPEG 2000
179
+
180
+ September 01, 2021 - v0.9.4
181
+ Add support for writing images tile-by-tile
182
+ Add support for opj_set_decoded_components
183
+ Remove support for Python 3.6
184
+
185
+ December 31, 2020 - v0.9.3
186
+ Qualify support on Python 3.9, OpenJPEG 2.4
187
+ Add support for multithreaded writes
188
+
189
+ June 30, 2020 - v0.9.2
190
+ Update setup.py to include tests
191
+ Update gdal imports to stop DeprecationWarning
192
+
193
+ June 30, 2020 - v0.9.2
194
+ Update setup.py to include tests
195
+ Update gdal imports to stop DeprecationWarning
196
+
197
+ January 15, 2020 - v0.9.1
198
+ Remove GDAL from setup.py requirements
199
+
200
+ January 14, 2020 - v0.9.0
201
+ Removed support for python2.7
202
+ Fixed Cygwin support
203
+ Fixed appveyor builds, Travis-CI framework reworked
204
+ Some fragile tests removed
205
+
206
+ November 15, 2019 - v0.8.19
207
+ Qualify on Python 3.8
208
+
209
+ April 24, 2019 - v0.8.18
210
+ Fix geotiff UUID corner coordinate string representation
211
+ Improve warning and error messages
212
+ Correct improperly raised exception types
213
+ Remove build/test for Python 3.4 (EOL)
214
+ Fix read-the-docs requirements
215
+
216
+ February 19, 2019 - v0.8.17
217
+ Add support for ICC profile raw data
218
+ Fix parsing of negative resolution box exponents
219
+
220
+ September 18, 2018 - v0.8.16
221
+ Qualify on Python 3.7
222
+ Fix documentation typo
223
+
224
+ April 07, 2018 - v0.8.15
225
+ Fix link to readthedocs
226
+ Fix for invalid progression order display
227
+
228
+ January 21, 2018 - v0.8.14
229
+ Fix layers bug
230
+
231
+ January 10, 2018 - v0.8.13
232
+ Clarify PSNR usage
233
+ Add support for openjpeg threads
234
+
235
+ October 14, 2017 - v0.8.12
236
+ Qualify on OpenJPEG v2.3.0
237
+ Drop support for Python 3.3
238
+
239
+ August 15, 2017 - v0.8.11
240
+ Qualify on OpenJPEG v2.2.0
241
+ State LTS plans
242
+
243
+ March 22, 2017 - v0.8.10
244
+ Add pathlib support
245
+ Add appveyor to CI testing
246
+
247
+ January 26, 2017 - v0.8.9
248
+ Qualified on Python 3.6
249
+ Change travis-ci testing to use Anaconda
250
+
251
+ December 01, 2016 - v0.8.8
252
+ Refactor test suite
253
+ Fix printing errors in case of bad colr box
254
+ Fix tests on CentOS when seeing OpenJPEG 1.3
255
+
256
+ October 02, 2016 - v0.8.7
257
+ Qualified on OPENJPEG v2.1.2
258
+
259
+ September 19, 2016 - v0.8.6
260
+ The install requirement on setuptools is now stated explicitly.
261
+ Fix error printing invalid channel definition box.
262
+
263
+ July 07, 2016 - v0.8.5
264
+ Relax dependency on lxml; use stdlib ElementTree if necessary.
265
+ Fix XML box processing bug on certain XML declarations.
266
+ Qualified on OPENJPEG v2.1.1.
267
+
268
+ May 21, 2016 - v0.8.4
269
+ Add Anaconda awareness to config module, favor over system package manager.
270
+ Fix issue locating openjpeg dll on windows.
271
+
272
+ September 30, 2015 - v0.8.3
273
+ Add gdal interpretation of UUIDBox with GeoTIFF Box specification for
274
+ JPEG2000 metadata.
275
+ Add support for Python 3.5.
276
+ Add support for Cygwin platform.
277
+ Add write support for UUIDInfo and UUIDList box.
278
+ Relax installation requirement of lxml from version 3.0 to version 2.3.2.
279
+ Fix parsing error on python2 of bits-per-component box.
280
+
281
+ May 17, 2015 - v0.8.2
282
+ Add proper library version check to read methods.
283
+
284
+ May 08, 2015 - v0.8.1
285
+ Add support for JP2 bits per component box.
286
+
287
+ Jan 10, 2015 - v0.8.0
288
+ Deprecate old read and write methods in favor of array-style slicing.
289
+ Reduce number of steps required for writing images.
290
+ Add ignore_pclr_cmap_cdef, verbose, shape, codestream, layer properties.
291
+
292
+ Oct 06, 2014 - v0.7.2
293
+ Add ellipsis support in array-style slicing.
294
+
295
+ Oct 02, 2014 - v0.7.1
296
+ Fix README to mention Python 3.4
297
+
298
+ Oct 01, 2014 - v0.7.0
299
+ Add array-style slicing.
300
+
301
+ August 03, 2014 - v0.6.0
302
+ Add Cinema2K, Cinema4K write support.
303
+ Changed constructor for ChannelDefinition box.
304
+ Removed support for Python 2.6.
305
+ Added write support for JP2 UUID, DataEntryURL, Palette and Component
306
+ Mapping boxes, JPX Association, NumberList and DataReference boxes.
307
+ Added read support for JPX free, number list, data reference, fragment
308
+ table, and fragment list boxes.
309
+ Improved JPX Reader Requirements box support.
310
+ Added get_printoptions, set_printoptions functions.
311
+ Palette box now a 2D numpy array instead of a list of 1D arrays.
312
+ JP2 super box constructors now take optional box list argument.
313
+ Fixed bug where JPX files with more than one codestream but advertising
314
+ jp2 compatibility were not being read.
315
+
316
+ Jan 28, 2014 - v0.5.10
317
+ Fixed bad warning when reader requirements box mask length is unsupported.
318
+
319
+ Oct 29, 2013 - v0.5.9
320
+ Fixed bad library load on linux as a result of 0.5.8
321
+
322
+ Oct 29, 2013 - v0.5.8
323
+ Fixed unnecessary warnings when default locations for openjpeg
324
+ libraries on mac do not specify the actual library.
325
+
326
+ Oct 28, 2013 - v0.5.7
327
+ Fixed bad import error message when libopenjpeg library not
328
+ installed on mac.
329
+
330
+ Oct 13, 2013 - v0.5.6
331
+ Fixed handling of non-ascii chars in XML boxes. Fixed some
332
+ docstring errors in jp2box module.
333
+
334
+ Oct 03, 2013 - v0.5.5
335
+ Fixed pip install error introduced in 0.5.0.
336
+
337
+ Sep 24, 2013 - v0.5.4
338
+ Fixed test error restricted to v2.0.
339
+
340
+ Sep 24, 2013 - v0.5.3
341
+ Removed a duplicated channel definition test in test_jp2box
342
+ that could cause a segfault in 1.3 if not properly skipped.
343
+
344
+ Sep 23, 2013 - v0.5.2
345
+ Fixed some tests that have been failing since 0.5 under various edge cases.
346
+
347
+ Sep 19, 2013 - v0.5.1
348
+ Added more resiliency to XML box parsing.
349
+ Fixed tests that failed if OPJ_DATA_ROOT not set.
350
+
351
+ Sep 16, 2013 - v0.5.0
352
+ Added write support for 1.5.x. Added version module.
353
+
354
+ Aug 21, 2013 - v0.4.1
355
+ Fixed segfault with openjpeg 1.x when rlevel=-1
356
+
357
+ Aug 18, 2013 - v0.4.0
358
+ Added append method.
359
+
360
+ Aug 15, 2013 - v0.3.2
361
+ Fixed test bug where missing Pillow package caused test failures.
362
+
363
+ Aug 14, 2013 - v0.3.1
364
+ Exposed mantissa, exponent, and guard_bits fields in QCC and QCD segments.
365
+ Exposed layers and code_block_size in COD segment.
366
+ Exposed precinct_size in COC segment.
367
+
368
+ Jul 31, 2013 - v0.3.0
369
+ Added support for official 2.0.0.
370
+
371
+ Jul 27, 2013 - v0.2.8
372
+ Fixed inconsistency regarding configuration file directory on windows.
373
+
374
+ Jul 25, 2013 - v0.2.7
375
+ Warns but no longer errors out when neither library is found (issue89).
376
+
377
+ Jul 24, 2013 - v0.2.6
378
+ No longer warning when configuration file not found.
379
+ Added read support for jpch, jplh boxes.
380
+ Added testing of files in format-corpus repository.
381
+
382
+ Jul 23, 2013 - v0.2.5
383
+ Fixed inconsistency in XML handling, now all instances are always
384
+ ElementTree objects.
385
+
386
+ Jul 21, 2013 - v0.2.4
387
+ Fixed markdown bug for Fedora 17 information.
388
+ Fixed out-of-date windows information.
389
+ Fixed incorrect interpretation of Psot parameter.
390
+
391
+ Jul 18, 2013 - v0.2.3
392
+ Support for Python 2.6, OpenJPEG 1.4.
393
+ Incompatible change to ChannelDefinitionBox constructor.
394
+ Added RGBA example.
395
+
396
+ Jul 11, 2013 - v0.2.2
397
+ Fixed mistakes with trove classifier, pypi releases.
398
+
399
+ Jul 11, 2013 - v0.2.0
400
+ Support for Python 2.7 on windows, OpenJPEG 1.5.1.
401
+
402
+ Jun 27, 2013 - v0.1.10
403
+ Can wrap codestreams in custom JP2 jackets.
404
+ Exposing parameter to specify multi component transform.
405
+ Added a raw codestream file.
406
+
407
+ Jun 16, 2013 - v0.1.9
408
+ Reading ICC profile headers as ordered dicts.
409
+ Exif dictionaries changed to ordered dicts.
410
+ Honoring XDG_CONFIG_HOME environment variable.
411
+
412
+ Jun 14, 2013 - v0.1.8
413
+ Added reduce=-1 option to get lowest resolution thumbnail.
414
+
415
+ Jun 07, 2013 - v0.1.7
416
+ Changed Exif dictionary names from ['Exif', 'Photo',
417
+ 'Iop', 'GPSInfo'] to ['Image', 'Photo', 'Iop', 'GPSInfo'].
418
+
419
+ Jun 06, 2013 - v0.1.6
420
+ Exif classes made private.
421
+ Refactored IFD post processing.
422
+ Corrected omission of Exif in UUIDBox docstring.
423
+
424
+ Jun 06, 2013 - v0.1.5
425
+ Changed ColourSpecificationBox attribute "color_space" to "colorspace".
426
+ Fixed MANIFEST issue affecting PyPI installs.
427
+
428
+ Jun 05, 2013 - v0.1.4
429
+ Added Exif UUID read support.
430
+
431
+ Jun 02, 2013 - v0.1.3p1
432
+ Raising IOErrors when code block size and precinct sizes do not match.
433
+ Added statement to docs about upstream library dependence.
434
+ Added roadmap to docs.
435
+
436
+ May 30, 2013 - v0.1.2
437
+ Added XMP UUID read support.
438
+ Added jp2 boxes to rst docs, XMLBox.indent method made into a
439
+ private module method.
440
+ Precinct sizes restricted to be multiples of two.
441
+
442
+ May 27, 2013 - v0.1.1
443
+ Changed write example to not rely on matplotlib.
444
+ Fixed readthedocs.org setup to build documentation automatically.
445
+ Can import glymur without libopenjp2 actually being present.
446
+ Changed write example to not rely on matplotlib.
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.2
2
+ Name: Glymur
3
+ Version: 0.13.8
4
+ Home-page: https://github.com/quintusdias/glymur
5
+ Author: 'John Evans'
6
+ Author-email: "John Evans" <jevans667cc@proton.me>
7
+ License: 'MIT'
8
+ Classifier: Programming Language :: Python
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
13
+ Classifier: Programming Language :: Python :: Implementation :: CPython
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Topic :: Scientific/Engineering
18
+ Requires-Python: >=3.9
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE.txt
21
+ Requires-Dist: numpy
22
+ Requires-Dist: lxml
23
+ Requires-Dist: packaging
24
+ Provides-Extra: test
25
+ Requires-Dist: pytest; extra == "test"
26
+ Requires-Dist: pillow; extra == "test"
27
+ Requires-Dist: scikit-image; extra == "test"
28
+
29
+
30
+ **glymur** contains a Python interface to the OpenJPEG library which
31
+ allows one to read and write JPEG 2000 files.
@@ -0,0 +1,53 @@
1
+ CHANGES.txt
2
+ LICENSE.txt
3
+ MANIFEST.in
4
+ README.md
5
+ pyproject.toml
6
+ setup.cfg
7
+ Glymur.egg-info/PKG-INFO
8
+ Glymur.egg-info/SOURCES.txt
9
+ Glymur.egg-info/dependency_links.txt
10
+ Glymur.egg-info/entry_points.txt
11
+ Glymur.egg-info/not-zip-safe
12
+ Glymur.egg-info/requires.txt
13
+ Glymur.egg-info/top_level.txt
14
+ glymur/__init__.py
15
+ glymur/_iccprofile.py
16
+ glymur/codestream.py
17
+ glymur/command_line.py
18
+ glymur/config.py
19
+ glymur/core.py
20
+ glymur/jp2box.py
21
+ glymur/jp2k.py
22
+ glymur/jp2kr.py
23
+ glymur/options.py
24
+ glymur/tiff.py
25
+ glymur/version.py
26
+ glymur/data/__init__.py
27
+ glymur/data/goodstuff.j2k
28
+ glymur/data/heliov.jpx
29
+ glymur/data/nemo.jp2
30
+ glymur/lib/__init__.py
31
+ glymur/lib/openjp2.py
32
+ glymur/lib/tiff.py
33
+ tests/test_callbacks.py
34
+ tests/test_cinema.py
35
+ tests/test_codestream.py
36
+ tests/test_colour_specification_box.py
37
+ tests/test_config.py
38
+ tests/test_geo.py
39
+ tests/test_jp2box.py
40
+ tests/test_jp2box_jpx.py
41
+ tests/test_jp2box_uuid.py
42
+ tests/test_jp2box_xml.py
43
+ tests/test_jp2k.py
44
+ tests/test_jp2k_writes.py
45
+ tests/test_jp2kr.py
46
+ tests/test_libtiff.py
47
+ tests/test_openjp2.py
48
+ tests/test_printing.py
49
+ tests/test_set_decoded_components.py
50
+ tests/test_slicing.py
51
+ tests/test_threading.py
52
+ tests/test_tiff2jp2.py
53
+ tests/test_warnings.py
@@ -1,3 +1,3 @@
1
1
  [console_scripts]
2
2
  jp2dump = glymur.command_line:main
3
-
3
+ tiff2jp2 = glymur.command_line:tiff2jp2
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,8 @@
1
+ numpy
2
+ lxml
3
+ packaging
4
+
5
+ [test]
6
+ pytest
7
+ pillow
8
+ scikit-image
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2013 John Evans
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,4 @@
1
+ include *.txt *.md
2
+ prune build
3
+ exclude readthedocs-pip-requirements.txt
4
+ exclude release.txt
glymur-0.13.8/PKG-INFO ADDED
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.2
2
+ Name: Glymur
3
+ Version: 0.13.8
4
+ Home-page: https://github.com/quintusdias/glymur
5
+ Author: 'John Evans'
6
+ Author-email: "John Evans" <jevans667cc@proton.me>
7
+ License: 'MIT'
8
+ Classifier: Programming Language :: Python
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
13
+ Classifier: Programming Language :: Python :: Implementation :: CPython
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Topic :: Scientific/Engineering
18
+ Requires-Python: >=3.9
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE.txt
21
+ Requires-Dist: numpy
22
+ Requires-Dist: lxml
23
+ Requires-Dist: packaging
24
+ Provides-Extra: test
25
+ Requires-Dist: pytest; extra == "test"
26
+ Requires-Dist: pillow; extra == "test"
27
+ Requires-Dist: scikit-image; extra == "test"
28
+
29
+
30
+ **glymur** contains a Python interface to the OpenJPEG library which
31
+ allows one to read and write JPEG 2000 files.
@@ -0,0 +1,8 @@
1
+ glymur: a Python interface for JPEG 2000
2
+ =========================================
3
+
4
+ **glymur** contains a Python interface to the OpenJPEG library which
5
+ allows one to read and write JPEG 2000 files. **glymur** works on
6
+ Python 3.9, 3.10, 3.11, and 3.12.
7
+
8
+ Please read the docs, https://glymur.readthedocs.org/en/latest/
@@ -0,0 +1,20 @@
1
+ """glymur - read, write, and interrogate JPEG 2000 files."""
2
+
3
+ __all__ = [
4
+ 'data',
5
+ 'get_option', 'set_option', 'reset_option',
6
+ 'get_printoptions', 'set_printoptions',
7
+ 'get_parseoptions', 'set_parseoptions',
8
+ 'Jp2k', 'Jp2kr', 'Tiff2Jp2k',
9
+ ]
10
+
11
+ # Local imports
12
+ from glymur import version
13
+ from .options import (get_option, set_option, reset_option,
14
+ get_printoptions, set_printoptions,
15
+ get_parseoptions, set_parseoptions)
16
+ from .jp2k import Jp2k, Jp2kr
17
+ from .tiff import Tiff2Jp2k
18
+ from . import data
19
+
20
+ __version__ = version.version