Quite often it is necessary to send additional information along with files. HTML5/Flash Uploader solves this task and supports uploading the following kinds of additional information:
This topic has two paragraphs, namely, uploading common data and uploading image-specific data. Each of them describes approaches on how to send and receive relevant data, possibilities provided by these approaches, and code samples.
If you are unfamiliar with the Saving Uploaded Files in HTML5/Flash Uploader ASP.NET topic, please, read it first.
This section describes several approaches to uploading additional data. They are quite different but have two features in common, namely, independence of file types and upload of common data.
Using HTML forms is the most straight-forward way to upload data in web applications, thus, HTML5/Flash Uploader supports it. All you need is just to add the desired form to the same page where the ImageUploaderFlash control is hosted and set the Metadata.AdditionalFormName property to the name of created form. Then, when a user clicks Upload, the form data will be submitted along with user-selected files. On the server side, the fields of this form are accessible through the Package.PackageFields collection by their names.
An additional form can contain HTML input elements of different types, for example, you may use:
text
for author's namecheckbox
to determine whether to send a notification about the upload completionselect
to choose keywords related to the uploadThe following input types are not allowed: file
, image
, button
, and
reset
. Their values will not be sent at all.
The following configuration makes HTML5/Flash Uploader sending data from the addForm
form
along with uploaded files.
<form id="addForm" name="addForm"> <input ID="keywords" name="keywords" type="text" /> <input ID="addressee" name="addressee" type="text" /> </form> <form id="form1" runat="server"> <aur:ImageUploaderFlash ID="Uploader1" runat="server" OnAllFilesUploaded="AllFilesUploaded"> <Metadata AdditionalFormName="addForm" /> </aur:ImageUploaderFlash> </form>
Fields of the additional form are sent in each package, though in the following example we use the first package, which number is 0
,
because there is always at least one package in the upload session.
protected void AllFilesUploaded(object sender, Aurigma.ImageUploaderFlash.AllFilesUploadedEventArgs e) { string keywords = e.Packages[0].PackageFields["keywords"]; string addressee = e.Packages[0].PackageFields["addressee"]; }
Additional fields can be attached to the POST request using the metadata.addCustomField(String, String, Boolean) method. It accepts the following parameters:
You may add custom fields to the upload request only at runtime using the HTML5/Flash Uploader JavaScript API. Custom fields can use any format you like but should not conflict with the standard field names. See the POST Field Reference topic for a full list of standard HTML5/Flash Uploader fields.
On the server side, additional fields are accessible through the Package.PackageFields collection by their names.
The following example sends and receives an additional field named authorField
. Here the metadata.addCustomField(String, String, Boolean) method is called in the BeforeUpload event handler,
which fires when the upload is about to be started. For more information about events, please, see the using events section.
<script type="text/javascript" language="javascript"> function onBeforeUpload() { var uploader = $au.imageUploaderFlash('Uploader1'); uploader.metadata().addCustomField('authorField', 'Author Name'); } </script> <form id="form1" runat="server"> <aur:ImageUploaderFlash ID="Uploader1" runat="server" OnAllFilesUploaded="AllFilesUploaded" > <ClientEvents> <aur:ClientEvent EventName="BeforeUpload" HandlerName="onBeforeUpload" /> </ClientEvents> </aur:ImageUploaderFlash> </form>
Additional fields are sent in each package, though in the following example we use the first package, which number is 0
,
because there is always at least one package in the upload session.
protected void AllFilesUploaded(object sender, Aurigma.ImageUploaderFlash.AllFilesUploadedEventArgs e) { string author = e.Packages[0].PackageFields["authorField"]; }
Each file uploaded via HTML5/Flash Uploader may have a description. There is no need to turn this possibility on, because it is enabled by default. So, let us examine how to get descriptions of uploaded files on a server using the FileUploaded event handler:
protected void FileUploaded(object sender, Aurigma.ImageUploaderFlash.FileUploadedEventArgs e) { string description = e.UploadedFile.Description; }
HTML5/Flash Uploader has some imaging capabilities; let us describe two of these features, which allow uploading additional data:
A rotation angle can be got through the Angle property of the UploadedFile class. HTML5/Flash Uploader measures rotation angle in degrees clockwise.
As soon as rotation of images is allowed by default, there is no need to configure HTML5/Flash Uploader to send it, so the following example shows only how to receive such data on a server.
protected void FileUploaded(object sender, Aurigma.ImageUploaderFlash.FileUploadedEventArgs e) { int angle = e.UploadedFile.Angle; }
To upload EXIF or IPTC values, you should specify the desired fields using the Metadata.Exif and Metadata.Iptc properties. Both these properties represent semicolon separated lists of field names which should be extracted and uploaded along with images. Metadata.ValueSeparator sets a string separator for fields which can contain multiple string values, like IptcKeyword.
The following example sends two EXIF and two IPTC fields for each user-selected image:
<aur:ImageUploaderFlash ID="Uploader1" runat="server" OnFileUploaded="FileUploaded"> <Converters> <aur:Converter Mode="*.*=SourceFile" /> </Converters> <Metadata Iptc="IptcCopyrightNotice;IptcKeyword" ValueSeparator=";" Exif="ExifColorSpace;ExifDateTime" /> </aur:ImageUploaderFlash>
The following example gets the EXIF and IPTC fields sent accordingly to the previous configuration and writes these values to the Descriptions.xml
file. Here uploaded fields are contained in the Package.PackageFields collection and can be retrieved by keys named in the following way: FieldName_xx
, where FieldName
is a name of an EXIF or IPTC field and xx
is the index of an uploaded file in this package.
protected void FileUploaded(object sender, Aurigma.ImageUploaderFlash.FileUploadedEventArgs e) { string galleryPath = Server.MapPath("Gallery"); System.Xml.XmlDocument descriptions = new System.Xml.XmlDocument(); if (System.IO.File.Exists(galleryPath + "Descriptions.xml")) descriptions.Load(galleryPath + "Descriptions.xml"); else descriptions.AppendChild(descriptions.CreateElement("files")); System.Xml.XmlElement file = descriptions.CreateElement("file"); file.SetAttribute("name", e.UploadedFile.SourceName); file.SetAttribute("CopyrightNotice", e.UploadedFile.Package.PackageFields["IptcCopyrightNotice_" + e.UploadedFile.Index]); file.SetAttribute("IptcKeyword", e.UploadedFile.Package.PackageFields["IptcKeyword_" + e.UploadedFile.Index]); file.SetAttribute("ExifColorSpace", e.UploadedFile.Package.PackageFields["ExifColorSpace_" + e.UploadedFile.Index]); file.SetAttribute("ExifDateTime", e.UploadedFile.Package.PackageFields["ExifDateTime_" + e.UploadedFile.Index]); descriptions.DocumentElement.AppendChild(file); descriptions.Save(galleryPath + "Descriptions.xml"); }
All date/time values have the following format: YYYY:MM:DD hh:mm:ss
. For example, May 11, 2006,
2:40PM would be represented as: 2006:05:11 14:40:00
.