imageio-ozf

ImageIO plugin that allows you to use OziExplorer image files(ozf2/ozf3/ozf4) without using GDAL/OziApi or any other environment dependencies.

License

License

GroupId

GroupId

com.github.nikolaybespalov
ArtifactId

ArtifactId

imageio-ozf
Last Version

Last Version

0.1.5
Release Date

Release Date

Type

Type

jar
Description

Description

imageio-ozf
ImageIO plugin that allows you to use OziExplorer image files(ozf2/ozf3/ozf4) without using GDAL/OziApi or any other environment dependencies.
Project URL

Project URL

https://github.com/nikolaybespalov/imageio-ozf
Source Code Management

Source Code Management

https://github.com/nikolaybespalov/imageio-ozf

Download imageio-ozf

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.nikolaybespalov/imageio-ozf/ -->
<dependency>
    <groupId>com.github.nikolaybespalov</groupId>
    <artifactId>imageio-ozf</artifactId>
    <version>0.1.5</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.nikolaybespalov/imageio-ozf/
implementation 'com.github.nikolaybespalov:imageio-ozf:0.1.5'
// https://jarcasting.com/artifacts/com.github.nikolaybespalov/imageio-ozf/
implementation ("com.github.nikolaybespalov:imageio-ozf:0.1.5")
'com.github.nikolaybespalov:imageio-ozf:jar:0.1.5'
<dependency org="com.github.nikolaybespalov" name="imageio-ozf" rev="0.1.5">
  <artifact name="imageio-ozf" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.nikolaybespalov', module='imageio-ozf', version='0.1.5')
)
libraryDependencies += "com.github.nikolaybespalov" % "imageio-ozf" % "0.1.5"
[com.github.nikolaybespalov/imageio-ozf "0.1.5"]

Dependencies

compile (1)

Group / Artifact Type Version
commons-io : commons-io jar 2.6

test (5)

Group / Artifact Type Version
com.github.davidcarboni : resource-utils jar 1.1.0
org.junit.jupiter : junit-jupiter-api jar 5.1.0
org.junit.vintage : junit-vintage-engine jar 5.1.0
org.junit.platform : junit-platform-launcher jar 1.1.0
org.junit.platform : junit-platform-runner jar 1.1.0

Project Modules

There are no modules declared in this project.

imageio-ozf

Build Status Codacy Badge Codacy Badge Maven Central

ImageIO plugin that allows you to use OziExplorer raster files(ozf2/ozf3) in your Java application.

OziExplorer

It's as easy as reading any other image file

    BufferedImage ozfImage = ImageIO.read(new File("image.ozf3"));

Just add dependency to your pom.xml

    <dependency>
        <groupId>com.github.nikolaybespalov</groupId>
        <artifactId>imageio-ozf</artifactId>
        <version>${imageio.ozf.version}</version>
        <scope>runtime</scope>
    </dependency>

Or to your build.gradle

    dependencies {
        runtime("com.github.nikolaybespalov:imageio-ozf:${imageio.ozf.version}")
    }

And your project will be able to work with .ozf files!

Look at gt-ozi if you build your app on GeoTools stack.

Versions

Version
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0