I only return from a stream because after using the resize code similar to this the destination file has an unknown mime type (img.RawFormat.Guid) and Id like the Mime type to be correct on all image objects as it makes it hard write generic handling code otherwise.
The Trick for making
PNGs: Without the extra intermediate MemoryStream to save to, you won't be able to make PNGs. You can't image.Save() a PNG directly to Response.OutputStream.
bitmap_file.Save(Server.MapPath("~/uploadimage/Aparteman/")+Filename1+".png", ImageFormat.Png);
See the following links
resize-transparent-images-using-c-sharp[
^]
Scott[
^]