Skip to content

Commit

Permalink
default compression GZIP(1), 5x faster resaving
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanPreibisch committed Sep 30, 2024
1 parent 88eea6b commit 29d3aaa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public static ParametersResaveN5Api getParamtersIJ(
if ( compression == 0 ) // "Bzip2", "Gzip", "Lz4", "Raw (no compression)", "Xz"
n5params.compression = new Bzip2Compression();
else if ( compression == 1 )
n5params.compression = new GzipCompression();
n5params.compression = new GzipCompression( 1 );
else if ( compression == 2 )
n5params.compression = new Lz4Compression();
else if ( compression == 4 )
Expand Down

0 comments on commit 29d3aaa

Please sign in to comment.