paneItem.enableDisproportionalExifThumbnails Property ActiveX/Java Uploader JavaScript

Supported browsers: FirefoxGoogle ChromeSafari

Get or sets a value indicating whether Java Uploader should generate a preview thumbnail from the original image in the case when thumbnail saved in EXIF metadata is out of proportions of original image.

Syntax

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

Property Value

Type: Boolean

If true Java Uploader displays disproportional EXIF thumbnails in the list, otherwise the control resizes original image to the thumbnail size.

Default value is true.

Remarks

Note

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

To accelerate folder navigation Java Uploader supports displaying EXIF thumbnails in the folder and upload panes when the Thumbnails, Tiles, or List view mode is set. Such thumbnails are created by the most of cameras and stored along with image data. However, some cameras may create EXIF thumbnails which are out of proportions of original images. If so disproportional thumbnails will have black stripes above and below them. In this case you can set this property to false to regenerate preview thumbnails from original images and get rid of black stripes or specify a true value to display disproportional thumbnails instead.

See Also

Reference