2022-07-12 09:40:35 +09:00
|
|
|
# BioFormatsImageInfo
|
|
|
|
Metadata extraction tool based on Bio-Formats
|
|
|
|
|
2022-07-12 17:46:31 +09:00
|
|
|
### make package
|
2022-07-12 09:40:35 +09:00
|
|
|
```shell
|
2022-07-12 17:46:31 +09:00
|
|
|
mvn package
|
2022-07-12 09:40:35 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
### run
|
|
|
|
```shell
|
2022-07-12 17:46:31 +09:00
|
|
|
./target/dist/bin/bioformats-imageinfo "[path to image file]"
|
2022-07-12 09:40:35 +09:00
|
|
|
```
|
|
|
|
|
2022-07-12 17:46:31 +09:00
|
|
|
### run by jar
|
2022-07-12 09:40:35 +09:00
|
|
|
```shell
|
2022-10-05 16:00:29 +09:00
|
|
|
java -jar ./target/dist/lib/bioformats-imageinfo-1.1.1.jar "[path to image file]"
|
2022-07-12 09:40:35 +09:00
|
|
|
```
|
|
|
|
|
2022-07-12 17:46:31 +09:00
|
|
|
### run by fat jar
|
2022-07-12 09:40:35 +09:00
|
|
|
```shell
|
2022-10-05 16:00:29 +09:00
|
|
|
java -jar ./target/bioformats-imageinfo-1.1.1-jar-with-dependencies.jar "[path to image file]"
|
2022-07-12 09:40:35 +09:00
|
|
|
```
|
|
|
|
|
2022-07-12 17:46:31 +09:00
|
|
|
### library usage
|
2022-07-12 09:40:35 +09:00
|
|
|
```java
|
|
|
|
import java.util.LinkedHashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
import jp.riken.neurodata.tools.BioFormatsImageInfo;
|
2022-09-29 19:03:57 +09:00
|
|
|
import jp.riken.neurodata.tools.BioFormatsImageException;
|
|
|
|
import jp.riken.neurodata.tools.BioFormatsImageThumbnail;
|
2022-07-12 09:40:35 +09:00
|
|
|
|
|
|
|
String path = "[path to image file]";
|
|
|
|
String format = "";
|
|
|
|
Map<String, Object> metadata = new LinkedHashMap<String, Object>();
|
2022-09-29 19:03:57 +09:00
|
|
|
Map<String, Object> thumbnail = new LinkedHashMap<String, Object>();
|
2022-07-12 09:40:35 +09:00
|
|
|
|
|
|
|
try {
|
2022-07-12 09:53:08 +09:00
|
|
|
format = BioFormatsImageInfo.readMetadata(path, metadata);
|
2022-09-29 19:03:57 +09:00
|
|
|
BioFormatsImageThumbnail.readThumbnail(path, thumbnail);
|
2022-07-12 09:40:35 +09:00
|
|
|
} catch (BioFormatsImageException e) {
|
2022-07-12 09:53:08 +09:00
|
|
|
// error occurred
|
2022-07-12 09:40:35 +09:00
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
```
|