Gets or sets a resize quality of the thumbnail.
$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();
Type: String
The resize quality of the thumbnail.
The following values are supported:
| Value | Description |
|---|---|
| Low | Low quality. The image is resized using the nearest-neighbor algorithm. |
| Medium | Medium quality. The image is resized using the anisotropic algorithm. |
| High | High quality. The image is resized using the lanczos algorithm. |
Default value is "Medium".
This property makes sense only if the mode property has Thumbnail value.