Gets or sets a value indicating whether the thumbnail should be cropped.
$au.uploader({
converters : [
{
//...other params...
thumbnailApplyCrop: false,
//...other params...
}
]
})
Get/Set Value at Runtime
$au.uploader('uploaderID').converters().get(index).thumbnailApplyCrop(value);
value = $au.uploader('uploaderID').converters().get(index).thumbnailApplyCrop();
Type: Boolean
If true, the thumbnail is cropped using the specified crop bounds.
Default value is false.
In order to set a crop rectangle, select a region in the image editor or use the file.cropBounds property.
This property makes sense only if the mode property has the Thumbnail value.