[Nodes] Add options for image compression in imageProcessing and PanoramaPostProcessing.

This commit is contained in:
demoulinv 2023-04-07 15:58:47 +02:00 committed by Loïc Vital
parent 45ae444ced
commit bc14c0bcea
2 changed files with 38 additions and 0 deletions

View file

@ -521,6 +521,26 @@ Convert or apply filtering to the input images.
exclusive=True,
uid=[0],
),
desc.ChoiceParam(
name='compressionMethod',
label='Compression Method',
description='Compression method for output image.',
value='Auto',
values=['None', 'Auto', 'RLE', 'ZIP', 'ZIPS', 'PIZ', 'PXR24', 'B44', 'B44A', 'DWAA', 'DWAB'],
exclusive=True,
uid=[0],
),
desc.IntParam(
name='compressionLevel',
label='Compression Level',
description='Level of compression relying on the selected compression method.',
value=0,
range=(0, 200, 1),
uid=[0],
),
desc.ChoiceParam(
name='verboseLevel',
label='Verbose Level',