Open
Description
The Idea
A flag to allow changing the order that operations are applied.
Why?
There are some effects I want to add that require being able to change where they appear in the chain.
How?
Currently, I am imagining an --operations-order
flag. It would take a string, quoted, allowing you to list the order of operations by name. Like this: 'whitebalance, contrast, exposure`. Any operations you leave out but still use would be performed after the ones listed.
Example
easyraw -i file.NEF --operations-order 'whitebalance, contrast, exposure' -w 1.94,1,1.43 -c 1.1 -e 1.1 -s 0.95
Operations would be done as:
- black level adjustment (always performed)
- white balance
- contrast
- exposure
- saturation