This structure stores color reconstruction information for Digital Camera RAW files.
See Reconstructing Camera Raw Images Using Custom Parameters for more details.
Declaration:
Copy Code |
|
|---|---|
typedef struct tagAT_IGGUI_DSPL_ADJRAW { DWORD cbSize; DWORD dwGrpID; char * filename; HIGEAR hIGear; HWND hWnd; enumIGIlluminant Illuminant1; enumIGIlluminant Illuminant2; LPCHAR lpszTitle; AT_ERRCOUNT nErrCount; AT_INT SrcChannelCount; UINT uExposure; UINT uFlags; UINT uOrigin; UINT uPreset; UINT uShadows; UINT uTemperature; INT uTint; HIGDoubleMatrix XYZToCam1; HIGDoubleMatrix XYZToCam2; } AT_IGGUI_DSPL_ADJRAW, * LPAT_IGGUI_DSPL_ADJRAW; |
|
Members:
| Name | Type | Description |
| cbSize | DWORD | Size of this structure. |
| dwGrpID | DWORD | Reserved. |
| filename | char | Pointer to a file name to which the color reconstruction will be applied. |
| hIGear | HIGEAR | HIGEAR handle of the image to which the color reconstruction will apply. |
| hWnd | HWND | The handle of the dialog which contains the image preview window. |
| Illuminant1 | enumIGIlluminant | Standard illuminant 1 value. |
| Illuminant2 | enumIGIlluminant | Standard illuminant 2 value. |
| lpszTitle | LPCHAR | Reserved. |
| nErrCount | AT_ERRCOUNT | Reserved. |
| SrcChannelCount | AT_INT | Reserved. |
| uExposure | UINT | Exposure setting. |
| uFlags | UINT | Reserved. |
| uOrigin | UINT | Image rotation. See enumIGRotationValues for possible values. |
| uPreset | UINT | Reserved. |
| uShadows | UINT | Shadows setting. |
| uTemperature | UINT | Color temperature setting. |
| uTint | INT | Tint setting. |
| XYZToCam1 | HIGDoubleMatrix | XYZtoCamera1 matrix. |
| XYZToCam2 | HIGDoubleMatrix | XYZtoCamera2 matrix. |