diff --git a/README.md b/README.md index 209c7cc2..41423c57 100644 --- a/README.md +++ b/README.md @@ -358,6 +358,11 @@ by default. This includes calculating the minimum and maximum pixel values for t We recommend keeping this metadata for maximum compatibility with downstream applications, but it can be omitted by using the `--no-minmax` option. +Version 0.12.0 and later switches the underlying library that reads and writes Zarr from jzarr to +[zarr-java](https://github.com/zarr-developers/zarr-java). This allows Zarr v2 and Zarr v3 to be +supported with a single library. A consequence of this change is that all data is now written +as little-endian. + Performance =========== diff --git a/src/main/java/com/glencoesoftware/bioformats2raw/Converter.java b/src/main/java/com/glencoesoftware/bioformats2raw/Converter.java index 3bbc9204..c3407ceb 100644 --- a/src/main/java/com/glencoesoftware/bioformats2raw/Converter.java +++ b/src/main/java/com/glencoesoftware/bioformats2raw/Converter.java @@ -1607,7 +1607,10 @@ public void convert() } for (int s=0; s getPixelTypes() { + return Stream.of( + Arguments.of("float", DataType.FLOAT32), + Arguments.of("double", DataType.FLOAT64), + Arguments.of("uint32", DataType.UINT32), + Arguments.of("int32", DataType.INT32) + ); + } + }