How To Install jmagick6-docs on Ubuntu 18.04

In this tutorial we learn how to install jmagick6-docs on Ubuntu 18.04. jmagick6-docs is java interface to ImageMagick - api documentation

Introduction

In this tutorial we learn how to install jmagick6-docs on Ubuntu 18.04.

What is jmagick6-docs

jmagick6-docs is:

JMagick is an open source Java interface of ImageMagick. It is implemented in the form of Java Native Interface (JNI) into the ImageMagick API.

JMagick does not attempt to make the ImageMagick API object-oriented. It is merely a thin interface layer into the ImageMagick API.

JMagick currently only implements a subset of ImageMagick APIs. Should you require unimplemented features in JMagick, please join the mailing list and make a request.

This package contains javadoc generated documentation.

There are three methods to install jmagick6-docs on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install jmagick6-docs Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install jmagick6-docs

Install jmagick6-docs Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install jmagick6-docs

Install jmagick6-docs 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install jmagick6-docs

How To Uninstall jmagick6-docs on Ubuntu 18.04

To uninstall only the jmagick6-docs package we can use the following command:

sudo apt-get remove jmagick6-docs

Uninstall jmagick6-docs And Its Dependencies

To uninstall jmagick6-docs and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove jmagick6-docs

Remove jmagick6-docs Configurations and Data

To remove jmagick6-docs configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge jmagick6-docs

Remove jmagick6-docs configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge jmagick6-docs

References

Summary

In this tutorial we learn how to install jmagick6-docs package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.