Fit mode of 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("UploadThumbnail2FitMode", "Off"); //...other params... iu.writeHtml(); </script>
getImageUploader("ImageUploaderID").setUploadThumbnail2FitMode(value); value = getImageUploader("ImageUploaderID").getUploadThumbnail2FitMode();
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
.
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).
If you choose to send resized thumbnails, you can specify the quality of resizing with the UploadThumbnail2ResizeQuality property.