-1

我正在尝试调整文件夹中的图像大小。我正在使用的代码是这样的:

string logoUrl = HttpContext.Current.Server.MapPath("DeviceLogo");
System.Drawing.Image SourceLogo = System.Drawing.Image.FromFile(logoUrl + @"\" + objDevice.FileName);

//Create a logo for this device and reseller/client business              
Bitmap newImage = new Bitmap(objDevice.LogoWidth, objDevice.LogoHeight, PixelFormat.Format24bppRgb);
using (Graphics graphics = Graphics.FromImage(newImage))
{
    graphics.CompositingQuality = CompositingQuality.HighQuality;
    graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
    graphics.SmoothingMode = SmoothingMode.HighQuality;
    graphics.DrawImage(SourceLogo, 0, 0, objDevice.LogoWidth, objDevice.LogoHeight);
}
string filepath = HttpContext.Current.Server.MapPath("DeviceLogo");                

//Save the resized image                
newImage.Save(filepath + objDevice.FileName);

问题是图像没有调整大小

4

2 回答 2

0
    public void ResizeImage(Device objDevice)
    {
        string OriginalFile, NewFile;

        OriginalFile = HttpContext.Current.Server.MapPath("DeviceLogo") + @"\" + objDevice.FileName;
        NewFile = OriginalFile;

        System.Drawing.Image FullsizeImage = System.Drawing.Image.FromFile(OriginalFile);

        System.Drawing.Image NewImage = FullsizeImage.GetThumbnailImage(objDevice.LogoWidth, objDevice.LogoHeight, null, IntPtr.Zero);

        // Clear handle to original file so that we can overwrite it if necessary
        FullsizeImage.Dispose();

        // Save resized picture
        NewImage.Save(NewFile);
    }

Thanks None for helping

于 2013-06-06T04:33:09.177 回答
0
using(Image img = Image.FromFile(dlgFichier.FileName))
{
    Image temp = (Image)new Bitmap((Image)img.Clone(), new Size((int)Math.Round(img.Width / ratio), (int)Math.Round(img.Height / ratio)));
    temp.Save("your path");
}

尝试这个

/e 在我的情况下,我想应用一个比率来保持相同的高度和宽度,但你可以用你的值替换(int)Math.Round(img.Height / ratio)

/ee 用你的替换了我的值

using(Image img = Image.FromFile(dlgFichier.FileName))
{
    Image temp = (Image)new Bitmap((Image)img.Clone(), new Size(objDevice.LogoWidth, objDevice.LogoHeight));
    temp.Save("your path");
}
于 2013-06-03T11:50:06.100 回答