Hi Manuel,
Here are the compression hints currently supported by XISF:
compression-codec <codec>Enables compression and selects the specified compression codec. Currently supported codecs are:
zlib
lz4
lz4hc
zlib+sh
lz4+sh
lz4hc+sh where the '+sh' postfix enables byte shuffling for 16, 32 and 64-bit data blocks (ignored for 8-bit blocks). The default compression codec is zlib. The best option for images is usually zlib+sh.
compress-dataEnables data compression with the zlib algorithm. This hint is deprecated. It is equivalent to "compression-codec zlib".
no-compressionDisables data compression.
compression-level <n>Selects a compression level. <n> is a positive integer in the range [0,100]. Higher levels tend to yield higher compression ratios. A value of zero lets XISF select a default level for each compression codec, which generally is a good compromise between compression ratio and speed. The default level is zero.
For a complete list of supported codecs with up-to-date information, see the corresponding source code on the GitHub repository:
https://github.com/PixInsight/PCL/blob/master/src/modules/file-formats/XISF/XISFInstance.cppA source code comment with all hints is at line #66.