This demo application shows how to draw an image watermark on each image uploaded to the server. It places a watermark to the bottom right corner of an image.
The application highlights the following features:
To find information about how this demo is implemented using a specific platform, see the Samples by Platforms topic.
Note that screenshot upload is not yet supported in the Java version of Image Uploader.
Watermarks can be added only to thumbnails. However, if you need to add them to original images, do the following:
You can read more about watermarks in the Adding Watermarks topic. For more information about using thumbnails instead of original images, see the Optimized Upload Sample.
Image Uploader allows not only uploading files from disk, but also capturing bitmap images from clipboard. That means that the user can upload screenshots without saving them to disk and processing first. Users can simply make a screenshot pressing Shift+Print Screen or Alt+Print Screen and click the Paste Screenshot button of the control. The screenshot will be added to the upload list.
To enable screenshot upload, add the Paste Screenshot button, setting the ButtonPasteText property to the required value. To define names of screenshots in the upload list, set the PasteFileNameTemplate property.
The Paste Screenshot button is available only in the three panes layout.
You can also let the user select unnecessary files in the folder pane and delete them to the Recycle Bin by clicking the Delete Selected button. To add this button to Image Uploader, set the ButtonDeleteFilesText property to some non-empty value.
This application also demonstrates how to allow users to upload images only of certain types. Files of other types simply will not be shown while browsing. Extensions of the allowed files are listed as a value of the FileMask property. For more information, see the Restricting Files by Extensions and Types topic.
To submit data collected from the additional form along with images, the value of the AdditionalFormName property is set to the name of the used form. There are other ways to upload extra data using Image Uploader, and they are described in the Uploading Additional Data with Files topic.
To complete the upload started by Image Uploader, some actions
on the server side should be performed. The upload script of this application is almost equivalent to
one of the Basic Demo Sample. The only
difference is that now additional form data are sent along with images, and, therefore, additional POST
fields are parsed (in this case, only the Author
field).