OpenJPEG-2.5.0

OpenJPEG の概要

OpenJPEG is an open-source implementation of the JPEG-2000 standard. OpenJPEG fully respects the JPEG-2000 specifications and can compress/decompress lossless 16-bit images.

[注記]

注記

LFS や依存パッケージが本ブックに示す最新安定バージョンでなかった場合には、BLFS 開発版においては、パッケージのビルドや処理実行が適切に行われないことがあります。

パッケージ情報

OpenJPEG の依存パッケージ

必須

CMake-3.28.1

任意

Little CMS-2.14, libpng-1.6.40, libtiff-4.6.0, Doxygen-1.9.8 (to build the API documentation)

OpenJPEG のインストール

以下のコマンドを実行して OpenJPEG をビルドします。

mkdir -v build &&
cd       build &&

cmake -DCMAKE_BUILD_TYPE=Release \
      -DCMAKE_INSTALL_PREFIX=/usr \
      -DBUILD_STATIC_LIBS=OFF .. &&
make

このパッケージにテストスイートはありません。

root ユーザーになって以下を実行します。

make install &&

pushd ../doc &&
  for man in man/man?/* ; do
      install -v -D -m 644 $man /usr/share/$man
  done
popd

パッケージ構成

インストールプログラム: opj_compress, opj_decompress, opj_dump
インストールライブラリ: libopenjp2.so
インストールディレクトリ: /usr/include/openjpeg-2.5, /usr/lib/openjpeg-2.5

概略説明

opj_compress

converts various image formats to the jpeg2000 format

opj_decompress

converts jpeg2000 images to other image types

opj_dump

reads in a jpeg2000 image and dumps the contents to stdout