How to resize an image file ???
-
Hi dears, I have an uploadFile server control (in asp.net 2.0) which is uploades users images . how can I upload selected image to server by changing its height and width to a specific size and then save it? plz help me regards,
-
//save the image to the disk. //load the image. Image image = new Bitmap("myfile.bmp"); Image pThumbnail = image.GetThumbnailImage(100, 100, null, new IntPtr()); image.Save("myfile.bmp");
-
Hi dears, I have an uploadFile server control (in asp.net 2.0) which is uploades users images . how can I upload selected image to server by changing its height and width to a specific size and then save it? plz help me regards,
Check this post http://www.codeproject.com/aspnet/netimageupload.asp keep Learning and you never will be out of date...