Most of us have gone through the pains of uploading pictures from a digital camera to our web site. There are many commercial software products that will resize, generate HTML, and FTP your pictures to a web site. Since I have incorporated my own gallery generator in ASP.NET I wanted a program to resize image and just FTP them to my site. After talking with friends, I realized they also had the same problems. So I built this simple .Net application.
My friends and I have used this application numerous times. To view an example of the online gallery go to http://www.the-dentons.com/PicDirectory.aspx . If you would like the asp.net source code just email me.
Requirements
1) Allow for just Image resizing so that my friends could use the application in tandem with other software programs.
2) Resize Images to a constrained width (default to 400)
3) Since most cameras are 5-2 mega pixels, constrain the quality to web friendly file sizes. Thus preserving precious disk space and download time.
4) FTP to a base picture directory in a new sub folder.
5) Allow for image filename prefixing. My camera recycles the filename often creating an overwrite problem.
Solution
I decided to not reinvent the wheel and borrowed the components and code from the following articles
Image Resizing:
http://www.eggheadcafe.com/articles/20030515.asp
FTP:
Written by Jaimon Mathew ([email protected])
Directory Selection
Not sure.
Screen Shot

balaji badriPosted Oct 19, 2015, 4:53 AM
How to Display ImageResize by passing paramater in asp.Net web application so please tel me
Mahesh ChandPosted Oct 30, 2013, 10:20 AM
Love this utility.
naveen sPosted Jan 29, 2011, 6:46 AM
i am developing a small project in image image processing could you give me the source code for this image resize... it is really good ....i am using c# 2005
Martin WhitakerPosted Mar 1, 2009, 5:14 AM
Hi, Neat work! I'm quite surprised that this utility is still pretty much the only one out there that does this without overcomplicating everything with extra facilities. Would you consider releasing the source? I ask because I'd like to modify it slightly for my own needs, not because there's anything wrong with it!