PDA

View Full Version : کاهش حجم عکس



habib_namvar
پنج شنبه 21 آذر 1392, 19:28 عصر
با سلام من میخوام بعد از upload عکس حجم عکس رو پایین بیارم . سایز رو میتونم تغییر بدم ولی حجم رو نمیدونم ،لطفا راهنمایی کنید

morteza_mokhtari
پنج شنبه 21 آذر 1392, 19:41 عصر
var ratio = (double)width / image.Width;
newWidth = (int)(image.Width * ratio);
newHeight = (int)(image.Height * ratio);

var newImage = new Bitmap(newWidth, newHeight);
using (var g = Graphics.FromImage(newImage))
{
g.DrawImage(image, 0, 0, newWidth, newHeight);

g.CompositingQuality = CompositingQuality.HighQuality;
g.SmoothingMode = SmoothingMode.HighQuality;
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
newImage.Save(SaveLocation, image.RawFormat);