Gets or sets a value indicating whether the thumbnail should contain IPTC metadata copied from the original file.
$au.imageUploaderFlash({ converters : [ { //...other params... thumbnailCopyIptc: false, //...other params... } ] })Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').converters().set(index).thumbnailCopyIptc(value); value = $au.imageUploaderFlash('uploaderID').converters().get(index).thumbnailCopyIptc();
Type: Boolean
If true
, the IPTC information is copied from the original file. Otherwise, IPTC metadata will not be preserved.
Default value is false.
This property makes sense only if the mode property has the Thumbnail
value.