###User Defined Function###
_WinAPI_CreateColorAdjustment

###Description###
Creates $tagCOLORADJUSTMENT structure specifies the color adjustment.

###Syntax###
#include <WinAPIGdi.au3>
_WinAPI_CreateColorAdjustment ( [$iFlags = 0 [, $iIlluminant = 0 [, $iGammaR = 10000 [, $iGammaG = 10000 [, $iGammaB = 10000 [, $iBlack = 0 [, $iWhite = 10000 [, $iContrast = 0 [, $iBrightness = 0 [, $iColorfulness = 0 [, $iTint = 0]]]]]]]]]]] )


###Parameters###
@@ParamTable@@
$iFlags
	[optional] The flags that specify how the output image should be prepared. This parameter can be 0 or any combination of the following values:
		$CA_NEGATIVE
		$CA_LOG_FILTER
$iIlluminant
	[optional] The type of standard light source under which the image is viewed. This parameter can be only one of the following values:
		$ILLUMINANT_DEVICE_DEFAULT (Default)
		$ILLUMINANT_A
		$ILLUMINANT_B
		$ILLUMINANT_C
		$ILLUMINANT_D50
		$ILLUMINANT_D55
		$ILLUMINANT_D65
		$ILLUMINANT_D75
		$ILLUMINANT_F2
		$ILLUMINANT_TUNGSTEN
		$ILLUMINANT_DAYLIGHT
		$ILLUMINANT_FLUORESCENT
		$ILLUMINANT_NTSC
$iGammaR
	[optional] The n(th) power gamma-correction value for the red primary of the source colors.
	The value must be in the range from 2500 to 65,000.
	A value of 10,000 (Default) means no gamma correction.
$iGammaG
	[optional] The n(th) power gamma-correction value for the green primary of the source colors.
	The value must be in the range from 2500 to 65,000.
	A value of 10,000 (Default) means no gamma correction.
$iGammaB
	[optional] The n(th) power gamma-correction value for the blue primary of the source colors.
	The value must be in the range from 2500 to 65,000.
	A value of 10,000 (Default) means no gamma correction.
$iBlack
	[optional] The black reference for the source colors. Any colors that are darker than this are treated as black.
	The value must be in the range from 0 to 4000.
	Default is 0.
$iWhite
	[optional] The white reference for the source colors. Any colors that are lighter than this are treated as white.
	The value must be in the range from 6000 to 10,000.
	Default is 10,000
$iContrast
	[optional] The amount of contrast to be applied to the source object.
	The value must be in the range from -100 to 100.
	A value of 0 (Default) means no contrast adjustment.
$iBrightness
	[optional] The amount of brightness to be applied to the source object.
	The value must be in the range from -100 to 100.
	A value of 0 (Default) means no brightness adjustment.
$iColorfulness
	[optional] The amount of colorfulness to be applied to the source object.
	The value must be in the range from -100 to 100.
	A value of 0 (Default) means no colorfulness adjustment).
$iTint
	[optional] The amount of red or green tint adjustment to be applied to the source object.
	The value must be in the range from -100 to 100.
	Positive numbers adjust toward red and negative numbers adjust toward green.
	A value of 0 (Default) means no tint adjustment.
@@End@@

###ReturnValue###
Returns $tagCOLORADJUSTMENT structure containing the color adjustment values.


###Remarks###
None


###Related###


###Example###
@@IncludeExample@@
