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

converter.thumbnailCopyIptc Property

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Gets or sets a value indicating whether the thumbnail should contain IPTC metadata copied from the original file.

Syntax

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

Property Value

Type: Boolean

If true, the IPTC information is copied from the original file. Otherwise, IPTC metadata will not be preserved.

Default value is true.

Remarks

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

See Also

Reference

Manual