This documentation is for the old version. Go to the latest Upload Suite docs

converter.thumbnailResizeQuality Property

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Gets or sets a resize quality of the thumbnail.

Syntax

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

Property Value

Type: String

The resize quality of the thumbnail.

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

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

See Also

Reference

Manual