Fit mode of 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("UploadThumbnail3FitMode", "Off");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setUploadThumbnail3FitMode(value);
value = getImageUploader("ImageUploaderID").getUploadThumbnail3FitMode();
Property Value

A member of this enumeration that specifies a fit mode for the third thumbnail:

String value Integer value Description
Off 0 Do not send a thumbnail of this size to the server.
Fit 1 Send a thumbnail which is resized to fit the specified rectangle.
Width 2 Send a thumbnail which is resized to have the width which is not larger than the specified one.
Height 3 Send a thumbnail which is resized to have the height which is not larger than the specified one.
Icon 4 Send an icon of the file instead of the thumbnail.
ActualSize 5 Send the image of the original size (rotating and recompressing it if necessary).

If unsupported string value is passed, it is interpreted as Off.

NoteNote

When you receive this value through the JavaScript, integer value will be returned (even if you initialize appropriate property with a string value).

Default value is "Off" (do not send a thumbnail).

Remarks

If you choose to send resized thumbnails, you can specify the quality of resizing with the UploadThumbnail3ResizeQuality property.

See Also

Examples
Resizing and Rotating Images

Reference
UploadSourceFile Property
UploadThumbnail1FitMode Property
UploadThumbnail2FitMode Property
UploadThumbnail3BackgroundColor Property
UploadThumbnail3CompressOversizedOnly Property
UploadThumbnail3CompressionMode Property
UploadThumbnail3CopyExif Property
UploadThumbnail3CopyIptc Property
UploadThumbnail3Height Property
UploadThumbnail3JpegQuality Property
UploadThumbnail3ResizeQuality Property
UploadThumbnail3Watermark Property
UploadThumbnail3Width Property