paneItem.previewQuality Property ActiveX/Java Uploader JavaScript

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Gets or sets a resize quality of preview thumbnails.

Syntax

JavaScript Initialize
$au.uploader({
    paneItem: {
        //...other params...
        previewQuality: "Medium",
        //...other params...
    }
})
Get/Set Value at Runtime
$au.uploader('uploaderID').paneItem().previewQuality(value);
value = $au.uploader('uploaderID').paneItem().previewQuality();

Property Value

Type: String

The resize quality of preview thumbnails.

The following values are supported:

ValueDescription
LowLow quality. The image is resized using the nearest-neighbor algorithm.
MediumMedium quality. The image is resized using the anisotropic algorithm.
HighHigh quality. The image is resized using the lanczos algorithm.

Default value is "Medium".

Remarks

Note

This property takes effect in the Thumbnails, Tiles, and List views only.

See Also

Reference