Aurigma ActiveX/Java Uploader 8.0.33
paneItem.previewQuality Property
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:
| 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".