Gets or sets a value indicating whether the thumbnail copy the ICC color prfile from the original file.
$au.imageUploaderFlash({ converters : [ { //...other params... thumbnailCopyColorProfile: false, //...other params... } ] })Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').converters().set(index).thumbnailCopyColorProfile(value); value = $au.imageUploaderFlash('uploaderID').converters().get(index).thumbnailCopyColorProfile();
Type: Boolean
If true
, the thumbnail will have the same color profile as the original file. Otherwise, it will have no color profile.
Default value is false.
This property makes sense only if the mode property has the Thumbnail
value.