https://github.com/nikolaybespalov/imageio-ozf
ImageIO plugin that allows you to use OziExplorer raster files(ozf2/ozf3) in your Java application.
https://github.com/nikolaybespalov/imageio-ozf
imageio-plugin java ozf oziexplorer
Last synced: 6 months ago
JSON representation
ImageIO plugin that allows you to use OziExplorer raster files(ozf2/ozf3) in your Java application.
- Host: GitHub
- URL: https://github.com/nikolaybespalov/imageio-ozf
- Owner: nikolaybespalov
- License: apache-2.0
- Created: 2018-06-25T12:51:25.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-14T12:54:10.000Z (over 7 years ago)
- Last Synced: 2023-12-11T21:41:38.200Z (over 2 years ago)
- Topics: imageio-plugin, java, ozf, oziexplorer
- Language: Java
- Homepage:
- Size: 693 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# imageio-ozf
[](https://travis-ci.org/nikolaybespalov/imageio-ozf)
[](https://www.codacy.com/app/nikolaybespalov/imageio-ozf)
[](https://www.codacy.com/app/nikolaybespalov/imageio-ozf)
[](https://maven-badges.herokuapp.com/maven-central/com.github.nikolaybespalov/imageio-ozf)
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_
```xml
com.github.nikolaybespalov
imageio-ozf
${imageio.ozf.version}
runtime
```
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](https://github.com/nikolaybespalov/gt-ozi) if you build your app on GeoTools stack.