Thumbnail Creator
Summary:
This control is not a control. It's an .aspx page that receives info from the url to produce a resized image. The output is an image, so you can easily assign the page url to the src attribute of an img tag.
...More:
The page gets the width and height info from the queryString and the path of the image. Then it just applies the characteristics to the image.
Usage:
You can assign the path of the page to the src of an img tag like this for example:
<img src="Files/IMG-MakeThumbnail.aspx?Url=../Images/HeaderNav.jpg&Width=50%&Height=60%" >
For the width and height, you can assign absolute sizes in pixels like Width=50 rather than 50%.