This documentation is for the old version. Go to the latest Upload Suite docs

converter Class

This class represents a file converter.

For a list of all members of this class, see converter Members.

Syntax

JavaScript
$au.converter = function() {
}

Remarks

Image Uploader Flash allows sending up to three so-called converted files for each of the user-selected files. These files are configured using the converters property of the imageUploaderFlash object. This property accepts a collection of converter instances. Each converter describes one file (source, thumbnail, icon, or ZIP archive) to be uploaded for every file the user selects.

For instance, you set the following collection of converters:

JavaScript
var u = $au.iamgeUploaderFlash({
    id: 'Uploader1',
    converters: [
        {mode: '*.*=SourceFile'},
        {mode: '*.*=Thumbnail;*.*=Icon', thumbnailFitMode: 'Fit', thumbnailWidth: '120', thumbnailHeight: '120'}
    ]
});

It means that Image Uploader Flash will send an original file and its resized copy or icon. So if a user selects two files (a JPEG image and a PDF document) Image Uploader Flash will send four files:

  • the JPEG image and the PDF file themselves,
  • a resized copy of the image and a PDF icon.

See Also

Reference

Manual