Aurigma Image Uploader 6.5 Dual
ImageUploader.UploadThumbnail1CompressOversizedOnly Property
Switch that specifies whether an original file should be uploaded as the first thumbnail in case when original image dimensions and file size are not bigger than dimensions and file size of the first thumbnail.
Syntax
Initialize
JavaScript
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("UploadThumbnail1CompressOversizedOnly", "false"); //...other params... iu.writeHtml(); </script>
Get/Set Value in Runtime
JavaScript
getImageUploader("ImageUploaderID").setUploadThumbnail1CompressOversizedOnly(value);
value = getImageUploader("ImageUploaderID").getUploadThumbnail1CompressOversizedOnly();Property Value
A boolean value (true or false). If true and:
- The original file is JPEG;
- No watermark is applied;
- The dimensions of the original file are not bigger than the dimensions of the first thumbnail;
- The size in bytes of the original file is not greater than the size of the first thumbnail.
Then the original file will be sent instead of the first thumbnail. In all other cases a thumbnail is created.
Default value is "false".
See Also
Manual
Reference
- UploadThumbnail1BackgroundColor Property
- UploadThumbnail1CompressionMode Property
- UploadThumbnail1CopyExif Property
- UploadThumbnail1CopyIptc Property
- UploadThumbnail1FitMode Property
- UploadThumbnail1Height Property
- UploadThumbnail1JpegQuality Property
- UploadThumbnail1ResizeQuality Property
- UploadThumbnail1Resolution Property
- UploadThumbnail1Watermark Property
- UploadThumbnail1Width Property