Skip to main content

Create a thumbnail in ASP.NET

 #region Create Thumbnail
    // Create a thumbnail in byte array format from the image encoded in the passed byte array.  
    // (RESIZE an image in a byte[] variable.)  
    public static byte[] CreateThumbnail(byte[] PassedImage, int LargestSide, int Height, int Width)
    {
        byte[] ReturnedThumbnail;

        using (System.IO.MemoryStream StartMemoryStream = new System.IO.MemoryStream(), NewMemoryStream = new System.IO.MemoryStream())
        {
            // write the string to the stream  
            StartMemoryStream.Write(PassedImage, 0, PassedImage.Length);

            // create the start Bitmap from the MemoryStream that contains the image  
            System.Drawing.Bitmap startBitmap = new System.Drawing.Bitmap(StartMemoryStream);

            // set thumbnail height and width proportional to the original image.  
            int newHeight;
            int newWidth;
            double HW_ratio;
            if (startBitmap.Height > startBitmap.Width)
            {
                newHeight = LargestSide;
                HW_ratio = (double)((double)LargestSide / (double)startBitmap.Height);
                newWidth = (int)(HW_ratio * (double)startBitmap.Width);
            }
            else
            {
                newWidth = LargestSide;
                HW_ratio = (double)((double)LargestSide / (double)startBitmap.Width);
                newHeight = (int)(HW_ratio * (double)startBitmap.Height);
            }
            newHeight = Height;
            newWidth = Width;
            // create a new Bitmap with dimensions for the thumbnail.  
            System.Drawing.Bitmap newBitmap = new System.Drawing.Bitmap(newWidth, newHeight);

            // Copy the image from the START Bitmap into the NEW Bitmap.  
            // This will create a thumnail size of the same image.  
            newBitmap = ResizeImage(startBitmap, newWidth, newHeight);

            // Save this image to the specified stream in the specified format.  
            newBitmap.Save(NewMemoryStream, System.Drawing.Imaging.ImageFormat.Jpeg);

            // Fill the byte[] for the thumbnail from the new MemoryStream.  
            ReturnedThumbnail = NewMemoryStream.ToArray();
        }
        // return the resized image as a string of bytes.  
        return ReturnedThumbnail;
    }

    // Resize a Bitmap  
    private static System.Drawing.Bitmap ResizeImage(System.Drawing.Bitmap image, int width, int height)
    {
        System.Drawing.Bitmap resizedImage = new System.Drawing.Bitmap(width, height);
        using (System.Drawing.Graphics gfx = System.Drawing.Graphics.FromImage(resizedImage))
        {
            gfx.DrawImage(image, new System.Drawing.Rectangle(0, 0, width, height),
                new System.Drawing.Rectangle(0, 0, image.Width, image.Height), System.Drawing.GraphicsUnit.Pixel);
        }
        return resizedImage;
    }

    public byte[] imageToByteArray(System.Drawing.Image imageIn)
    {
        MemoryStream ms = new MemoryStream();
        imageIn.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
        return ms.ToArray();
    }

    public System.Drawing.Image byteArrayToImage(byte[] byteArrayIn)
    {
        MemoryStream ms = new MemoryStream(byteArrayIn);
        System.Drawing.Image returnImage = System.Drawing.Image.FromStream(ms);
        return returnImage;
    }

    #endregion



User above code like this :

    System.Drawing.Image returnImage;
    byte[] byteArrayIn;
    MemoryStream ms;

    //Get Bytes from Requested file
    byte[] buffer = new byte[uploads.ContentLength];
    uploads.InputStream.Read(buffer, 0, uploads.ContentLength);

    if ((uploads.ContentLength / 1000) > 1000)
    {
        //Create image from Bytes array
        System.Drawing.Image img = byteArrayToImage(buffer);

        int height = Convert.ToInt32(Convert.ToDouble(img.Height) * .7);
        int width = Convert.ToInt32(Convert.ToDouble(img.Width) * .7);

        //Resize Image - ORIGINAL
        byteArrayIn = CreateThumbnail(buffer, 10000, height, width);
        //byteArrayIn = CreateThumbnail(buffer, 10000, 550, 700);
        ms = new MemoryStream(byteArrayIn);
        returnImage = System.Drawing.Image.FromStream(ms);
        returnImage.Save(path_ORIGINAL);
    }
    else
    {
        uploads.SaveAs(path_ORIGINAL);
    }

    //Resize Image - Create Thumbnail
    byteArrayIn = CreateThumbnail(buffer, 100, 105, 145);
    ms = new MemoryStream(byteArrayIn);
    returnImage = System.Drawing.Image.FromStream(ms);
    returnImage.Save(path_Thumbnail);

Comments

  1. Resize JPEG image to fixed width, while keeping aspect ratio as it is

    System.Drawing.Image img = CommonUtil.byteArrayToImage(buffer);
    int width = 200;
    int height = Convert.ToInt32((img.Height * width) / img.Width);

    ReplyDelete
  2. public static byte[] CreateThumbnail(byte[] PassedImage, int LargestSide)
    {
    byte[] ReturnedThumbnail;

    using (System.IO.MemoryStream StartMemoryStream = new System.IO.MemoryStream(), NewMemoryStream = new System.IO.MemoryStream())
    {
    // write the string to the stream
    StartMemoryStream.Write(PassedImage, 0, PassedImage.Length);

    // create the start Bitmap from the MemoryStream that contains the image
    System.Drawing.Bitmap startBitmap = new System.Drawing.Bitmap(StartMemoryStream);

    // set thumbnail height and width proportional to the original image.
    int newHeight;
    int newWidth;
    double HW_ratio;
    if (startBitmap.Height > startBitmap.Width)
    {
    newHeight = LargestSide;
    HW_ratio = (double)((double)LargestSide / (double)startBitmap.Height);
    newWidth = (int)(HW_ratio * (double)startBitmap.Width);
    }
    else
    {
    newWidth = LargestSide;
    HW_ratio = (double)((double)LargestSide / (double)startBitmap.Width);
    newHeight = (int)(HW_ratio * (double)startBitmap.Height);
    }

    // create a new Bitmap with dimensions for the thumbnail.
    System.Drawing.Bitmap newBitmap = new System.Drawing.Bitmap(newWidth, newHeight);

    // Copy the image from the START Bitmap into the NEW Bitmap.
    // This will create a thumnail size of the same image.
    newBitmap = ResizeImage(startBitmap, newWidth, newHeight);

    // Save this image to the specified stream in the specified format.
    newBitmap.Save(NewMemoryStream, System.Drawing.Imaging.ImageFormat.Jpeg);

    // Fill the byte[] for the thumbnail from the new MemoryStream.
    ReturnedThumbnail = NewMemoryStream.ToArray();
    }
    // return the resized image as a string of bytes.
    return ReturnedThumbnail;
    }

    ReplyDelete

Post a Comment

Popular posts from this blog

ASP.NET MVC - Set custom IIdentity or IPrincipal

Here's how I do it. I decided to use IPrincipal instead of IIdentity because it means I don't have to implement both IIdentity and IPrincipal. Create the interface interface ICustomPrincipal : IPrincipal { int UserId { get ; set ; } string FirstName { get ; set ; } string LastName { get ; set ; } } CustomPrincipal public class CustomPrincipal : ICustomPrincipal { public IIdentity Identity { get ; private set ; } public bool IsInRole ( string role ) { return false ; } public CustomPrincipal ( string email ) { this . Identity = new GenericIdentity ( email ); } public int UserId { get ; set ; } public string FirstName { get ; set ; } public string LastName { get ; set ; } } CustomPrincipalSerializeModel - for serializing custom information into userdata field in FormsAuthenticationTicket object. public class CustomPrincipalSerializeMode...

Validate credit card number with Mod 10 algorithm in C#

Introduction All you know what information contains in your NIC number. But do you know what information contains in the Credit Card Number? Following article provides brief details about what information contain in your credit card and demonstrates to how to validate credit card number using mod 10 (Luhn) algorithms with C#. Background  Card Length   Typically, credit card numbers are all numeric and the length of the credit card number is between 12 digits to 19 digits.  14, 15, 16 digits – Diners Club 15 digits – American Express 13, 16 digits – Visa 16 digits - MasterCard   For more information please refer  http://en.wikipedia.org/wiki/Bank_card_number . Hidden information  Major Industry Identifier (MII)   The first digit of the credit card number is the Major Industry Identifier (MII). It designates the category of the entry which issued the card.     1 and 2 – Airlin...

Web Services Description Language Tool (Wsdl.exe)

Ref:  https://msdn.microsoft.com/en-us/library/7h3ystb6(VS.80).aspx The Web Services Description Language tool generates code for XML Web services and XML Web service clients from WSDL contract files, XSD schemas, and .discomap discovery documents. wsdl [options] {URL | path} Argument Description URL The URL to a WSDL contract file (.wsdl), XSD schema file (.xsd), or discovery document (.disco). Note that you cannot specify a URL to a .discomap discovery document. Path The path to a local WSDL contract file (.wsdl), XSD schema file (.xsd), or discovery document (.disco or .discomap). Option Description /appsettingurlkey: key or /urlkey: key Specifies the configuration key to use in order to read the default value for the URL property when generating code. When using the   /parameters   option, this value is the   <appSettingUrlKey>   element and contains a string. /appsettingbaseurl: baseurl or /baseurl:...