ورود

View Full Version : حرفه ای: کاهش کیفیت عکس آپلود شده



smm2006sh
جمعه 18 اسفند 1391, 12:01 عصر
با عرض سلام
من از کد زیر برای کاهش سایز عکس استفاده میکنم
filename = FileUpload1.FileName;
System.Drawing.Image img = System.Drawing.Image.FromStream(FileUpload1.FileCo ntent);
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(img, 200, 150);

ولی این کار باعث کاهش بیش از اندازه کیفیت عکس میشه حالا کسی میدونه راهی هست که اینقدر کاهش کیفیت اتفاق نیافته:متفکر:

mariakhanom
جمعه 18 اسفند 1391, 16:17 عصر
÷

byte

















[] productImage;
filePath =



"~/images/karju/" + png;

MemoryStream

















str = newMemoryStream();

str.Write(productImage, 0, productImage.Length);







Bitmap upBmp2 = newBitmap(str);





//تنظیمات نمایشی عکس





Bitmap newBmp = newBitmap(236, 337, System.Drawing.Imaging.PixelFormat.Format24bppRgb) ;

newBmp.SetResolution(72, 72);







Graphics newGraphic = Graphics.FromImage(newBmp);

newGraphic.Clear(





Color.Empty);

newGraphic.DrawImage(upBmp2, 0, 0, 236, 337);







Bitmap upBmp = newBitmap(str);

newBmp.Save(Server.MapPath(filePath), System.Drawing.Imaging.





ImageFormat.png);

میذارم شاید به دردت خورد