JPEG quality for the third thumbnail.

Syntax

Initialize
JavaScript CopyCode imageCopy Code
<script type="text/javascript" src="iuembed.js"></script>
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500);
//...other params...
iu.addParam("UploadThumbnail3JpegQuality", "100");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setUploadThumbnail3JpegQuality(value);
value = getImageUploader("ImageUploaderID").getUploadThumbnail3JpegQuality();
Property Value

A positive integer value that specifies a JPEG quality for the third thumbnail in range from 0 (the worst quality) to 100 (the best quality).

Default value is "100".

Remarks

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.

See Also

Examples
Resizing and Rotating Images

Reference
UploadThumbnail3BackgroundColor Property
UploadThumbnail3CompressOversizedOnly Property
UploadThumbnail3CompressionMode Property
UploadThumbnail3CopyExif Property
UploadThumbnail3CopyIptc Property
UploadThumbnail3FitMode Property
UploadThumbnail3Height Property
UploadThumbnail3ResizeQuality Property
UploadThumbnail3Watermark Property
UploadThumbnail3Width Property