ASPSMARTIMAGE
Sample 3
This sample show the capability to Open, Process and Display pictures without saving it on the hard disk.
Using the Download method, you are now able to display a picture directly to the browser without saving it.
An image processing script can be called directly from an IMG tag
For this example : <IMG SRC='/scripts/aspSmartImage/sample3.asp'>

In this case, sample3.asp just open a file and call the download method to display it.
You can also use one or several process of filter (resample,crop,blur,gamma,etc...)

The script sample3.asp contains these 2 lines:
...
oSmartImage.OpenFile("/aspSmartImage/demo.jpg")
oSmartImage.Download()
...