繁体   English   中英

ASP.NET:调整上传到服务器的图像的大小(高度和宽度)

[英]ASP.NET: resize (height and width) an image uploaded to server

如何调整刚上传的服务器上图像的大小? 我将C#与.NET Framework 3.5 SP1结合使用。

谢谢!

请尝试以下方法:

 public string ResizeImageAndSave(int Width, int Height, string imageUrl, string destPath)
    {
        System.Drawing.Image fullSizeImg = System.Drawing.Image.FromFile(imageUrl);
        double widthRatio = (double)fullSizeImg.Width / (double)Width;
        double heightRatio = (double)fullSizeImg.Height / (double)Height;
        double ratio = Math.Max(widthRatio, heightRatio);
        int newWidth = (int)(fullSizeImg.Width / ratio);
        int newHeight = (int)(fullSizeImg.Height / ratio);
        //System.Drawing.Image.GetThumbnailImageAbort dummyCallBack = new System.Drawing.Image.GetThumbnailImageAbort(ThumbnailCallback);
        System.Drawing.Image thumbNailImg = fullSizeImg.GetThumbnailImage(newWidth, newHeight, new System.Drawing.Image.GetThumbnailImageAbort(ThumbnailCallback), IntPtr.Zero);
        //DateTime MyDate = DateTime.Now;
        //String MyString = MyDate.ToString("ddMMyyhhmmss") + imageUrl.Substring(imageUrl.LastIndexOf("."));
        thumbNailImg.Save(destPath, ImageFormat.Jpeg);
        thumbNailImg.Dispose();
        return "";
    }
    public bool ThumbnailCallback() { return false; }

你有尝试过吗?

public Image resize( Image img, int width, int height )
    {
        Bitmap b = new Bitmap( width, height ) ;
        Graphics g = Graphics.FromImage( (Image ) b ) ;
 g.DrawImage( img, 0, 0, width, height ) ;
    g.Dispose() ;

    return (Image ) b ;
}

我经常使用的代码段:

var target = new Bitmap(size.Width, size.Height, PixelFormat.Format24bppRgb);
target.SetResolution(source.HorizontalResolution,
source.VerticalResolution);

using (var graphics = Graphics.FromImage(target))
{
    graphics.Clear(Color.White);
    graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;

    graphics.DrawImage(source,
        new Rectangle(destX, destY, destWidth, destHeight),
        new Rectangle(sourceX, sourceY, source.Width, source.Height),
        GraphicsUnit.Pixel);
}

返回目标;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM