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

C# Generic class to parse value - "GenericConverter"

    public class GenericConverter     {         public static T Parse<T>(string sourceValue) where T : IConvertible         {             return (T)Convert.ChangeType(sourceValue, typeof(T));         }         public static T Parse<T>(string sourceValue, IFormatProvider provider) where T : IConvertible         {             return (T)Convert.ChangeType(sourceValue, typeof(T), provider);         }     }     public static class TConverter     {         public static T ChangeType<T>(object value)         {             return (T)ChangeType(typeof(T), value);         }         public static object ChangeType(Type t, object value)         {             TypeConverter tc = TypeDescriptor.GetConverter(t);             return tc.ConvertFrom(value);         }         public static void RegisterTypeConverter<T, TC>() where TC : TypeConverter         {             TypeDescriptor.AddAttributes(typeof(T), new TypeConverterAttribute(typeof(TC)));         }     } ----------------

How to create a countdown timer in jquery

Create a countdown timer in jQuery First we need to include the jQuery library file to the HTML page to perform this task. To do that we need to understand that what exactly a jQuery library fie is ? JQuery library file is the library of JavaScript, which means this file contains the predefined functions of jQuery. We just need to call these functions to perform the task. jQuery functions reduces the lines of code and makes our task easy. As this jQuery library file contains the javascript functions so we need to call the function within <script> </script> tag. Now after including the file, we need to define a variable which will store that for how long you want the timer on the page(c=60) and now the time you set needs to be changed in hours , minutes and seconds using the code “ var hours = parseInt( time / 3600 ) % ;var minutes = parseInt( time / 60 ) % 60; var seconds = time % 60;” Now we need to put the condition if timer got finished (if (t

Tip/Trick: Fix Common SEO Problems Using the URL Rewrite Extension

Search engine optimization (SEO) is important for any publically facing web-site.  A large % of traffic to sites now comes directly from search engines, and improving your site’s search relevancy will lead to more users visiting your site from search engine queries.  This can directly or indirectly increase the money you make through your site. This blog post covers how you can use the free Microsoft  URL Rewrite Extension  to fix a bunch of common SEO problems that your site might have.  It takes less than 15 minutes (and no code changes) to apply 4 simple  URL Rewrite  rules to your site, and in doing so cause search engines to drive more visitors and traffic to your site.  The techniques below work equally well with both ASP.NET Web Forms and ASP.NET MVC based sites.  They also works with all versions of ASP.NET (and even work with non-ASP.NET content). [In addition to blogging, I am also now using Twitter for quick updates and to share links. Follow me at:  twitter.com/scottg