Gets or set a value specifying whether the user is allowed to select CMYK images for the uploading.
$au.imageUploaderFlash({
restrictions: {
//...other params...
enableCmyk: true,
//...other params...
}
})
Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').restrictions().enableCmyk(value);
value = $au.imageUploaderFlash('uploaderID').restrictions().enableCmyk();
Type: Boolean
If true, no color space filtering is applied, otherwise only RGB images are allowed.
Default value is true.