Converter Class HTML5/Flash Uploader ASP.NET

Supported technologies: Adobe FlashHTML 5

This class represents a file converter.

Namespace: Aurigma.ImageUploaderFlash
Assembly: Aurigma.ImageUploaderFlash (in Aurigma.ImageUploaderFlash.dll)

Syntax

C#
public class Converter

Remarks

HTML5/Flash Uploader 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:

ASP.NET
<aur:ImageUploaderFlash ID="Uploader1" runat="server">
    <Converters>
        <aur:Converter Mode="*.*=SourceFile" />
        <aur:Converter Mode="*.*=Thumbnail;*.*=Icon" 
            ThumbnailHeight="120" 
            ThumbnailWidth="120" 
            ThumbnailFitMode="Fit" />
    </Converters>
</aur:ImageUploaderFlash>

It means that HTML5/Flash Uploader 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) HTML5/Flash Uploader will send four files:

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

Inheritance Hierarchy

System..Object
+ Aurigma.ImageUploaderFlash..Converter

See Also

Reference

Manual