Click here to Skip to main content
15,881,559 members
Articles / Programming Languages / C#

Image in C#: Save, Resize, and Convert to Binary

Rate me:
Please Sign up or sign in to vote.
4.00/5 (3 votes)
11 Sep 2010CPOL1 min read 55.6K   14   6
Useful methods of handling image in your code, especially when you're working with a database

Introduction

Sooner or later, you will find the need of handling image in your code, especially when you're working with a database. So in this article, I share with you some useful methods that I find myself using frequently. They include: saving image in a folder, getting thumbnail from the original image, converting image to binary for saving in database, and converting binary data back to image.

Save An Image

C#
Image originalImage = Image.FromFile(imagePath);
string filePath = AppDomain.CurrentDomain.BaseDirectory + savedName;
originalImage.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);

This code saves the image to the base directory of your app or website.
imagePath is the full path to the image that we need to save (e.g. "C:\Pictures\Lighthouse.jpg"), one way to get this is use an OpenFileDialog.
savedName is the name for the saved image.

Save the Image as a Thumbnail

C#
public static void SaveImage(string imagePath, string savedName,
    int width = 0, int height = 0)
{
    Image originalImage = Image.FromFile(imagePath);
    string filePath = AppDomain.CurrentDomain.BaseDirectory + savedName;

    if (width > 0 && height > 0)
    {
        Image.GetThumbnailImageAbort myCallback = 
		new Image.GetThumbnailImageAbort(ThumbnailCallback);
        Image imageToSave = originalImage.GetThumbnailImage
			(width, height, myCallback, IntPtr.Zero);
        imageToSave.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);
    }
    else
    {
        originalImage.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);
    }
}
private static bool ThumbnailCallback() { return false; }

Note the parameters: int width = 0 & int height = 0. This is a C# 4.0 feature: Optional Parameters, so we can call this method like this: (assume this method is in the ImageHandling class).

C#
// Save image as original
ImageHandling.SaveImage(@"C:\Pictures\Lighthouse.jpg", "OriginalLighthouse.jpg");
// Save image as thumbnail
ImageHandling.SaveImage(@"C:\Pictures\Lighthouse.jpg", 
		"ThumbnailLighthouse1.jpg", 160, 90);
// New feature: Named Parameter
ImageHandling.SaveImage(@"C:\Pictures\Lighthouse.jpg", 
		"ThumbnailLighthouse2.jpg", height: 90, width: 160);

Resize the Image and Keep Aspect Ratio

C#
int newWidth = originalImage.Width * percentage / 100;
int newHeight = originalImage.Height * percentage / 100;

To keep the image aspect ratio, simply replace width & height parameters with percentage parameter and call the GetThumbnailImage method with our new width & height.

Convert Image to Binary

C#
public static byte[] ImageToBinary(string imagePath)
{
    FileStream fileStream = new FileStream(imagePath, FileMode.Open, FileAccess.Read);
    byte[] buffer = new byte[fileStream.Length];
    fileStream.Read(buffer, 0, (int)fileStream.Length);
    fileStream.Close();
    return buffer;
}

Use this method when you want to save images in your database. The column to store binary data is usually varbinary(MAX).

Convert Binary to Image

You store images in your database as binary, of course you must convert binary back to images so you can display them in your app.

C#
public static Image BinaryToImage(System.Data.Linq.Binary binaryData)
{
    if (binaryData == null) return null;

    byte[] buffer = binaryData.ToArray();
    MemoryStream memStream = new MemoryStream();
    memStream.Write(buffer, 0, buffer.Length);
    return Image.FromStream(memStream);
}

You may need to add reference to System.Data.Linq. LINQ-to-SQL maps a varbinary column in your database to its relevant property as System.Data.Linq.Binary.

What about you? What are your favorite image-handling functions? Are there any other functions you'd like to have?

This article was originally posted at http://x189.blogspot.com/feeds/posts/default

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Vietnam Vietnam
ASP.NET MVC enthusiast.
Developer @ X189 blog.

Comments and Discussions

 
GeneralIt looks like exactly the same like this http://www.codeproject.com/Articles/76206/Image-in-C-Save-Resize-and-Convert-to-Binary Pin
pewquadrat24-Apr-16 2:28
pewquadrat24-Apr-16 2:28 
no text
GeneralRe: It looks like exactly the same like this http://www.codeproject.com/Articles/76206/Image-in-C-Save-Resize-and-Convert-to-Binary Pin
Duy H. Thai25-Apr-16 23:31
Duy H. Thai25-Apr-16 23:31 
Generalmemory stream from byte[] Pin
Richard_N14-Sep-10 14:06
Richard_N14-Sep-10 14:06 
GeneralImage.FromFile locks the file ... [modified] Pin
Blaiser13-Sep-10 20:07
Blaiser13-Sep-10 20:07 
GeneralRe: Image.FromFile Pin
N!K!ta10-Nov-10 11:24
N!K!ta10-Nov-10 11:24 
GeneralRe: Image.FromFile Pin
Blaiser10-Nov-10 13:26
Blaiser10-Nov-10 13:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.