JPEG quality for the second thumbnail.
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("UploadThumbnail2JpegQuality", "100"); //...other params... iu.writeHtml(); </script>
getImageUploader("ImageUploaderID").setUploadThumbnail2JpegQuality(value); value = getImageUploader("ImageUploaderID").getUploadThumbnail2JpegQuality();
A positive integer value that specifies a JPEG quality for the second thumbnail in range from 0 (the worst quality) to 100 (the best quality).
Default value is "100".
You can reduce a thumbnail file size by specifying the lower quality.
If the fit mode is ActualSize
, the image is recompressed (and therefore
this property is applicable) only when the original image is not JPEG.