converter.thumbnailKeepColorSpace Property ActiveX/Java Uploader JavaScript

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Gets or sets a value indicating whether to preserve original color space when creating the thumbnail.

Syntax

JavaScript Initialize
$au.uploader({
    converters : [
        {
            //...other params...
            thumbnailKeepColorSpace: false,
            //...other params...
        }
    ]
})
Get/Set Value at Runtime
$au.uploader('uploaderID').converters().get(index).thumbnailKeepColorSpace(value);
value = $au.uploader('uploaderID').converters().get(index).thumbnailKeepColorSpace();

Property Value

Type: Boolean

If true, the thumbnail is created in the original file color space. Otherwise, the thumbnail is created in RGB color space.

Default value is false.

Remarks

Note

ActiveX/Java Uploader Express does not keep original color space while creating thumbnails. See the Upload Suite Editions topic for details.

This property makes sense only if the mode property has the Thumbnail value.

See Also

Reference

Manual