source: general/graphlib/openjpeg2.xml@ 83e98db

12.0 12.1 kea ken/TL2024 ken/tuningfonts lazarus lxqt plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 83e98db was b474dfa, checked in by Douglas R. Reno <renodr@…>, 16 months ago

Another round of tags

  • Property mode set to 100644
File size: 5.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY openjpeg2-download-http "https://github.com/uclouvain/openjpeg/archive/v&openjpeg2-version;/openjpeg-&openjpeg2-version;.tar.gz">
8 <!ENTITY openjpeg2-download-ftp " ">
9 <!ENTITY openjpeg2-md5sum "5cbb822a1203dd75b85639da4f4ecaab">
10 <!ENTITY openjpeg2-size "1.8 MB">
11 <!ENTITY openjpeg2-buildsize "13 MB">
12 <!ENTITY openjpeg2-time "0.2 SBU">
13]>
14
15<sect1 id="openjpeg2" xreflabel="OpenJPEG-&openjpeg2-version;">
16 <?dbhtml filename="openjpeg2.html"?>
17
18
19 <title>OpenJPEG-&openjpeg2-version;</title>
20
21 <indexterm zone="openjpeg2">
22 <primary sortas="a-openjpeg2">OpenJPEG</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to OpenJPEG</title>
27
28 <para>
29 <application>OpenJPEG</application> is an open-source implementation of
30 the JPEG-2000 standard. OpenJPEG fully respects the JPEG-2000
31 specifications and can compress/decompress lossless 16-bit images.
32 </para>
33
34 &lfs113_checked;
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>
40 Download (HTTP): <ulink url="&openjpeg2-download-http;"/>
41 </para>
42 </listitem>
43 <listitem>
44 <para>
45 Download (FTP): <ulink url="&openjpeg2-download-ftp;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download MD5 sum: &openjpeg2-md5sum;
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download size: &openjpeg2-size;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Estimated disk space required: &openjpeg2-buildsize;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated build time: &openjpeg2-time;
66 </para>
67 </listitem>
68 </itemizedlist>
69
70 <bridgehead renderas="sect3">OpenJPEG Dependencies</bridgehead>
71
72 <bridgehead renderas="sect4">Required</bridgehead>
73 <para role="required">
74 <xref linkend="cmake"/>
75 </para>
76
77 <bridgehead renderas="sect4">Optional</bridgehead>
78 <para role="optional">
79 <xref linkend="lcms2"/>,
80 <xref linkend="libpng"/>,
81 <xref linkend="libtiff"/>, and
82 <xref linkend="doxygen"/> (to build the API documentation)
83 </para>
84
85 <para condition="html" role="usernotes">User Notes:
86 <ulink url="&blfs-wiki;/openjpeg2"/></para>
87
88 </sect2>
89
90 <sect2 role="installation">
91 <title>Installation of OpenJPEG</title>
92
93 <para>
94 Install <application>OpenJPEG</application> by running the
95 following commands:
96 </para>
97
98<screen><userinput>mkdir -v build &amp;&amp;
99cd build &amp;&amp;
100
101cmake -DCMAKE_BUILD_TYPE=Release \
102 -DCMAKE_INSTALL_PREFIX=/usr \
103 -DBUILD_STATIC_LIBS=OFF .. &amp;&amp;
104make</userinput></screen>
105
106<!-- Thread discussing the tests, fixing instructions,
107 but obtaining poor results:
108 http://lists.linuxfromscratch.org/pipermail/blfs-dev/2015-April/030035.html
109
110 There does not seem to be a test suite at all. 2022-05-15 (openjpeg-2.5.0)
111-->
112 <para>
113 This package does not come with a test suite.
114 </para>
115
116 <para>
117 Now, as the <systemitem class="username">root</systemitem> user:
118 </para>
119
120<screen role="root"><userinput>make install &amp;&amp;
121
122pushd ../doc &amp;&amp;
123 for man in man/man?/* ; do
124 install -v -D -m 644 $man /usr/share/$man
125 done
126popd</userinput></screen>
127
128 </sect2>
129<!--
130 <sect2 role="commands">
131 <title>Command Explanations</title>
132
133 <para>
134 <option>-DBUILD_TESTING=ON</option>: This switch enables
135 building the test suite.
136 </para>
137
138 </sect2>-->
139
140 <sect2 role="content">
141 <title>Contents</title>
142
143 <segmentedlist>
144 <segtitle>Installed Programs</segtitle>
145 <segtitle>Installed Libraries</segtitle>
146 <segtitle>Installed Directories</segtitle>
147
148 <seglistitem>
149 <seg>opj_compress, opj_decompress, and opj_dump</seg>
150 <seg>libopenjp2.so</seg>
151 <seg>/usr/include/openjpeg-&openjpeg2-majmin-version; and /usr/lib/openjpeg-&openjpeg2-majmin-version;</seg>
152 </seglistitem>
153 </segmentedlist>
154
155 <variablelist>
156 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
157 <?dbfo list-presentation="list"?>
158 <?dbhtml list-presentation="table"?>
159
160 <varlistentry id="opj_compress">
161 <term><command>opj_compress</command></term>
162 <listitem>
163 <para>
164 converts various image formats to the jpeg2000 format
165 </para>
166 <indexterm zone="openjpeg2 opj_compress">
167 <primary sortas="b-opj_compress">opj_compress</primary>
168 </indexterm>
169 </listitem>
170 </varlistentry>
171
172 <varlistentry id="opj_decompress">
173 <term><command>opj_decompress</command></term>
174 <listitem>
175 <para>
176 converts jpeg2000 images to other image types
177 </para>
178 <indexterm zone="openjpeg2 opj_decompress">
179 <primary sortas="b-opj_decompress">opj_decompress</primary>
180 </indexterm>
181 </listitem>
182 </varlistentry>
183
184 <varlistentry id="opj_dump">
185 <term><command>opj_dump</command></term>
186 <listitem>
187 <para>
188 reads in a jpeg2000 image and dumps the contents to stdout
189 </para>
190 <indexterm zone="openjpeg2 opj_dump">
191 <primary sortas="b-opj_dump">opj_dump</primary>
192 </indexterm>
193 </listitem>
194 </varlistentry>
195
196 </variablelist>
197
198 </sect2>
199
200</sect1>
Note: See TracBrowser for help on using the repository browser.