converter.thumbnailJpegQuality Property ActiveX/Java Uploader JavaScript

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Gets or sets a JPEG quality of the thumbnail.

Syntax

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

Property Value

Type: Number

The JPEG quality of the thumbnail in range from 0 (the worst quality) to 100 (the best quality).

Default value is 100.

Remarks

You can reduce thumbnail file size by specifying the lower quality.

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

See Also

Reference

Manual