How To Install openjpeg-doc on Debian 12

Learn how to install openjpeg-doc on Debian 12 with this tutorial. openjpeg-doc is JPEG 2000 image compression/decompression library

Introduction

In this tutorial we learn how to install openjpeg-doc on Debian 12.

What is openjpeg-doc

openjpeg-doc is:

OpenJPEG is a library for handling the JPEG 2000 image compression format. JPEG 2000 is a wavelet-based image compression standard and permits progressive transmission by pixel and resolution accuracy for progressive downloads of an encoded image. It supports lossless and lossy compression, supports higher compression than JPEG 1991, and has resilience to errors in the image.

This package installs the documentation files.

There are three methods to install openjpeg-doc on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install openjpeg-doc Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install openjpeg-doc using apt-get by running the following command:

sudo apt-get -y install openjpeg-doc

Install openjpeg-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install openjpeg-doc using apt by running the following command:

sudo apt -y install openjpeg-doc

Install openjpeg-doc Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install openjpeg-doc using aptitude by running the following command:

sudo aptitude -y install openjpeg-doc

How To Uninstall openjpeg-doc on Debian 12

To uninstall only the openjpeg-doc package we can use the following command:

sudo apt-get remove openjpeg-doc

Uninstall openjpeg-doc And Its Dependencies

To uninstall openjpeg-doc and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove openjpeg-doc

Remove openjpeg-doc Configurations and Data

To remove openjpeg-doc configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge openjpeg-doc

Remove openjpeg-doc configuration, data, and all of its dependencies

We can use the following command to remove openjpeg-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge openjpeg-doc

Dependencies

openjpeg-doc have the following dependencies:

References

Summary

In this tutorial we learn how to install openjpeg-doc package on Debian 12 using different package management tools: apt, apt-get and aptitude.