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

A member of this enumeration that specifies a fit mode for the second 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 UploadThumbnail2ResizeQuality property.

See Also

Examples
Resizing and Rotating Images

Reference
UploadSourceFile Property
UploadThumbnail1FitMode Property
UploadThumbnail3FitMode Property
UploadThumbnail2BackgroundColor Property
UploadThumbnail2CompressOversizedOnly Property
UploadThumbnail2CompressionMode Property
UploadThumbnail2CopyExif Property
UploadThumbnail2CopyIptc Property
UploadThumbnail2Height Property
UploadThumbnail2JpegQuality Property
UploadThumbnail2ResizeQuality Property
UploadThumbnail2Watermark Property
UploadThumbnail2Width Property