Aucune description

Nichlas Severinsen dffda21f68 Hackfix maybe il y a 5 ans
cmake 24fd3ce777 The change makes a relative path to header files il y a 6 ans
doc 6e6f8354a0 Some Doxygen tags are removed il y a 6 ans
scripts 3c2972f924 Reformat: apply reformattin on .h files (#128) il y a 7 ans
src dffda21f68 Hackfix maybe il y a 5 ans
tests 8db9d25dcf opj_decompress_fuzzer: remove checks regarding input dimensions (fixes #1079) il y a 5 ans
thirdparty 3d6ffaf3f3 Fix some typos in code comments and documentation il y a 6 ans
tools 016f80ae21 abi-check.sh: fix false postive ABI error, and display output error log il y a 5 ans
wrapping 5e795d90a1 Spelling fixes (patch by ka7, #890, rebased on top of master) il y a 7 ans
.gitignore d4e54e9f35 Add mechanisms to reformant and check code style (#128) il y a 7 ans
.travis.yml 8b9a89bc2e update token for automatic release il y a 5 ans
AUTHORS.md 4c5a1cc825 Update AUTHORS.md il y a 8 ans
CHANGELOG.md d1d422c126 Update for release 2.3.1 il y a 5 ans
CMakeLists.txt c7798bb0c6 update for release 2.3.1 il y a 5 ans
CTestConfig.cmake b09051fd79 fixed CTest configuration files il y a 13 ans
INSTALL.md 56f23b29a0 Add -DBUILD_PKGCONFIG_FILES to install instructions il y a 6 ans
LICENSE d19a4ab676 [trunk] updated copyright and added copyright notice required by ISO, in each file; updated AUTHORS, NEWS il y a 10 ans
NEWS.md d1d422c126 Update for release 2.3.1 il y a 5 ans
README.md d4e54e9f35 Add mechanisms to reformant and check code style (#128) il y a 7 ans
THANKS.md 7113c4e3bb Update THANKS.md il y a 8 ans
appveyor.yml 5709632545 update token for appveyor auto release il y a 5 ans

README.md

OPENJPEG Library and Applications

What is OpenJPEG ?

OpenJPEG is an open-source JPEG 2000 codec written in C language. It has been developed in order to promote the use of JPEG 2000, a still-image compression standard from the Joint Photographic Experts Group (JPEG). Since April 2015, it is officially recognized by ISO/IEC and ITU-T as a JPEG 2000 Reference Software.

Who can use the code ?

badge-license

Anyone. As the OpenJPEG code is released under the BSD 2-clause "Simplified" License, anyone can use or modify the code, even for commercial applications. The only restriction is to retain the copyright in the sources or in the binaries documentation. Of course, if you modified the code in a way that might be of interest for other users, you are encouraged to share it (through a github pull request or by filling an issue) but this is not a requirement.

How to install and use OpenJPEG ?

API Documentation needs a major refactoring. Meanwhile, you can check installation instructions and codec documentation.

Current Status

badge-build

badge-msvc-build

badge-coverity

Who are the developers ?

The library is developed and maintained by the Image and Signal Processing Group (ISPGroup), in the Université catholique de Louvain (UCL, with the support of the CNES, the CS company and the intoPIX company. The JPWL module has been developed by the Digital Signal Processing Lab (DSPLab) of the University of Perugia, Italy (UNIPG).

Details on folders hierarchy

  • src
    • lib
    • openjp2: contains the sources of the openjp2 library (Part 1 & 2)
    • openjpwl: contains the additional sources if you want to build a JPWL-flavoured library.
    • openjpip: complete client-server architecture for remote browsing of jpeg 2000 images.
    • openjp3d: JP3D implementation
    • openmj2: MJ2 implementation
    • bin: contains all applications that use the openjpeg library
    • common: common files to all applications
    • jp2: a basic codec
    • mj2: motion jpeg 2000 executables
    • jpip: OpenJPIP applications (server and dec server)
      • java: a Java client viewer for JPIP
    • jp3d: JP3D applications
      • tcltk: a test tool for JP3D
    • wx
      • OPJViewer: gui for displaying j2k files (based on wxWidget)
  • wrapping
    • java: java jni to use openjpeg in a java program
  • thirdparty: thirdparty libraries used by some applications. These libraries will be built only if there are not found on the system. Note that libopenjpeg itself does not have any dependency.
  • doc: doxygen documentation setup file and man pages
  • tests: configuration files and utilities for the openjpeg test suite. All test images are located in openjpeg-data repository.
  • cmake: cmake related files
  • scripts: scripts for developers

See LICENSE for license and copyright information.

See INSTALL for installation procedures.

See NEWS for user visible changes in successive releases.

API/ABI

An API/ABI timeline is automatically updated here.

OpenJPEG strives to provide a stable API/ABI for your applications. As such it only exposes a limited subset of its functions. It uses a mechanism of exporting/hiding functions. If you are unsure which functions you can use in your applications, you should compile OpenJPEG using something similar to gcc: -fvisibility=hidden compilation flag. See also: http://gcc.gnu.org/wiki/Visibility

On windows, MSVC directly supports export/hiding function and as such the only API available is the one supported by OpenJPEG.