ImageIO plugin that allows you to use OziExplorer raster files(ozf2/ozf3) in your Java application.
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.