Switch that specifies whether the third thumbnail should contain EXIF metadata copied from the original file.
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("UploadThumbnail3CopyExif", "false"); //...other params... iu.writeHtml(); </script>
getImageUploader("ImageUploaderID").setUploadThumbnail3CopyExif(value); value = getImageUploader("ImageUploaderID").getUploadThumbnail3CopyExif();
A boolean value (true
or false
). If true
,
the EXIF information is copied from the original source file. Otherwise only the image (without
metadata) is sent.
Default value is "false".