Skip to content

Commit

Permalink
Release 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaiter committed Mar 20, 2018
1 parent 6f640b6 commit 389a5cc
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![codecov](https://codecov.io/gh/dbmdz/imageio-jnr/branch/master/graph/badge.svg)](https://codecov.io/gh/dbmdz/imageio-jnr)
[![Apache 2.0 License](https://img.shields.io/badge/license-Apache_2.0-blue.svg)](LICENSE)
[![GitHub release](https://img.shields.io/github/release/dbmdz/imageio-jnr.svg?maxAge=2592000)](https://github.com/dbmdz/imageio-jnr/releases)
[![Maven Central](https://img.shields.io/maven-central/v/de.digitalcollections/imageio-jnr.svg?maxAge=2592000)](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22imageio-jnr%22)
[![Maven Central](https://img.shields.io/maven-central/v/de.digitalcollections.imageio/imageio-jnr.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22de.digitalcollections.imageio%22)


This repository contains ImageIO plugins that wrap the most common native
Expand All @@ -25,6 +25,31 @@ Please note that the plugins need at least Java 8.
| imageio-turbojpeg | JPEG | [TurboJPEG](https://libjpeg-turbo.org/About/TurboJPEG) | \>= 1.0 | [![Javadocs](http://javadoc.io/badge/de.digitalcollections.imageio/imageio-turbojpeg.svg)](http://javadoc.io/doc/de.digitalcollections.imageio/imageio-turbojpeg)


## Installation
To use the ImageIO plugins, include them in your dependencies:

```xml
<dependency>
<groupId>de.digitalcollections.imageio</groupId>
<artifactId>imageio-turbojpeg</artifactId>
<version>0.2.5</version>
</depdendency>

<dependency>
<groupId>de.digitalcollections.imageio</groupId>
<artifactId>imageio-openjpeg</artifactId>
<version>0.2.5</version>
</depdendency>
```

Before using them, make sure that you have all the required native libraries
installed, e.g. on Debian-based systems:

```
$ sudo apt install libturbojpeg1 libopenjp2-7
```


## Supported features

### imageio-openjpeg
Expand Down
2 changes: 1 addition & 1 deletion imageio-openjpeg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>de.digitalcollections.imageio</groupId>
<artifactId>imageio-jnr</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
</parent>
<artifactId>imageio-openjpeg</artifactId>
<name>MDZ/Bayerische Staatsbibliothek :: ImageIO :: OpenJPEG/JPEG2000 plugin</name>
Expand Down
2 changes: 1 addition & 1 deletion imageio-turbojpeg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>de.digitalcollections.imageio</groupId>
<artifactId>imageio-jnr</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
</parent>
<artifactId>imageio-turbojpeg</artifactId>
<name>MDZ/Bayerische Staatsbibliothek :: ImageIO :: TurboJPEG plugin</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.digitalcollections.imageio</groupId>
<artifactId>imageio-jnr</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
<packaging>pom</packaging>
<name>MDZ/Bayerische Staatsbibliothek :: ImageIO</name>
<description>Parent for ImageIO-JNR components.</description>
Expand Down

0 comments on commit 389a5cc

Please sign in to comment.