Redimensionar una imágen en C#

Método mediante el cual se puede redimensionar una imágen (.jpg, .png, .gif o .bmp) al tamaño dado, respetando las proporciones dadas.

public static string ResizeImage(string strImgPath, string strImgOutputPath, int iWidth, int iHeight)
{
    try
    {
        bool mismaImagen = strImgPath.Equals(strImgOutputPath);
        if (mismaImagen)
        {
            strImgOutputPath = strImgPath + "___.jpg";
        }

        string[] extensiones = {
                                   ".jpg",
                                   ".png",
                                   ".bmp",
                                   ".gif"
                               };

        if (!extensiones.Contains(Path.GetExtension(strImgPath)))
            throw new Exception("Extensión no soportada");

        //Lee el fichero en un stream
        Stream mystream = null;

        if (strImgPath.StartsWith("http"))
        {
            HttpWebRequest wreq = (HttpWebRequest)WebRequest.Create(strImgPath);
            HttpWebResponse wresp = (HttpWebResponse)wreq.GetResponse();
            mystream = wresp.GetResponseStream();
        }
        else
            mystream = File.OpenRead(strImgPath);

        // Cargo la imágen
        Bitmap imgToResize = new Bitmap(mystream);

        Size size = new Size(iWidth, iHeight);

        int sourceWidth = imgToResize.Width;
        int sourceHeight = imgToResize.Height;

        float nPercent = 0;
        float nPercentW = 0;
        float nPercentH = 0;

        nPercentW = ((float)size.Width / (float)sourceWidth);
        nPercentH = ((float)size.Height / (float)sourceHeight);

        if (nPercentH < nPercentW)
            nPercent = nPercentH;
        else
            nPercent = nPercentW;

        int destWidth = (int)(sourceWidth * nPercent);
        int destHeight = (int)(sourceHeight * nPercent);

        Bitmap b = new Bitmap(destWidth, destHeight);
        Graphics g = Graphics.FromImage((Image)b);
        g.InterpolationMode = InterpolationMode.HighQualityBicubic;

        g.DrawImage(imgToResize, 0, 0, destWidth, destHeight);
        g.Dispose();

        // We will store the correct image codec in this object
        ImageCodecInfo ici = GetEncoderInfo("image/jpeg"); ;
        // This will specify the image quality to the encoder
        EncoderParameter epQuality = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, 99L);
        // Store the quality parameter in the list of encoder parameters
        EncoderParameters eps = new EncoderParameters(1);
        eps.Param[0] = epQuality;
        b.Save(strImgOutputPath, ici, eps);

        imgToResize.Dispose();
        mystream.Close();
        mystream.Dispose();
        b.Dispose();
        g.Dispose();

        if (mismaImagen)
        {
            File.Delete(strImgPath);
            File.Move(strImgOutputPath, strImgPath);
        }

        return strImgPath;
    }
    catch
    {
        throw;
    }
}
private static ImageCodecInfo GetEncoderInfo(String mimeType)
{
    int j;
    ImageCodecInfo[] encoders;
    encoders = ImageCodecInfo.GetImageEncoders();
    for (j = 0; j < encoders.Length; ++j)
    {
        if (encoders[j].MimeType == mimeType)
            return encoders[j];
    }
    return null;
}

0 comentarios en “Redimensionar una imágen en C#

Responder a aryenson Cancelar la respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

Este sitio usa Akismet para reducir el spam. Aprende cómo se procesan los datos de tus comentarios.