Nichlas Severinsen cbd8c7a9c7 Update meson.build & tests/meson.build | 7 months ago | |
---|---|---|
src | 7 months ago | |
tests | 7 months ago | |
.editorconfig | 4 years ago | |
.gitignore | 4 years ago | |
CHANGELOG.md | 7 months ago | |
COPYING | 4 years ago | |
LICENSE.txt | 4 years ago | |
README.md | 7 months ago | |
jp2-pixbuf.thumbnailer.in | 4 years ago | |
meson.build | 7 months ago | |
meson_options.txt | 4 years ago |
This is a GdkPixbuf loader module for JPEG2000. It uses OpenJPEG to load JPEG2000 images as linear buffers in memory.
Note: by default there's already some JPEG2000 support in GdkPixbuf, but that uses the JasPer image library, which only support certain parts of the JPEG2000 standard, meaning certain images don't work.
meson build && cd build && ninja install
Alternatively, specifically for arch:
meson --prefix=/usr --buildtype=plain build && meson compile -C build && sudo meson install -C build
sudo aura -A jp2-pixbuf-loader -x
Copyright © 2020 - 2024 Nichlas Severinsen
This loader module is licensed under the GNU Lesser General Public License, version 2.1; LGPLv2.1. also see COPYING
OpenJPEG is licensed under the 2-clauses BSD License.
Build project then generate loaders.cache.in:
gdk-pixbuf-query-loaders libpixbufloader-jp2.so > ../tests/loaders.cache.in
Run tests:
ninja test
or meson test --print-errorlogs
Run tests with gdb:
meson test --gdb
Run tests with valgrind:
meson test --verbose --print-errorlogs --wrap='valgrind --leak-check=full'
Run a specific test:
meson test basic --print-errorlogs