I have an image
image = Image.FromStream(file.InputStream);
How I can use the property System.Drawing.Size for resize them or where this property used for?
Can I direct resize the image without change them to bitmap or without loss any quality. I not want corp just resize them.
How I can do this in C#?
You can use Bitmap class’s constructor to help, and actually Bitmap is a subclass of Image.
reference at – http://msdn.microsoft.com/en-us/library/system.drawing.size.aspx
more advance by GDI+ technique able to find at
http://www.codeproject.com/KB/GDI-plus/imageresize.aspx