ImageEn, unit imageenproc |
|
IESaveCubeLUTFile
Declaration
procedure IESaveCubeLUTFile(const FileName: string; LUT: TIE3DLutArray; Title: string = '');
Description
Saves the content of a 3D Look-up Table as a cube file.
An exception is raised on failure.
Note:
◼DomainMin will be set to (0,0,0)
◼DomainMax will be set to (1,1,1)
// Load cube file
IELoadCubeLUTFile( 'D:\cinematic.cube', LUT );
... Make some changes to LUT ...
// Save cube file
IESaveCubeLUTFile( 'D:\cinematic_EDIT.cube', LUT, '' );
See Also
◼IELoadCubeLUTFile◼ApplyCubeLUT