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

Show Hide Image in DataGridView Cell

Rate me:
Please Sign up or sign in to vote.
4.56/5 (8 votes)
27 May 2011CPOL 46.5K   2.3K   17   5
This post discusses how to show hide image in DataGridView cell

Introduction

ShowHideImage/Image_1.png

Image 1

This post is regarding how to show and hide Image within the DataGridViewCells. The user can also opt to view the image within the available display area.

ShowHideImage/Image_1.png

Image 2

The following routine helps to show the image in the cell. The Image in the cell is saved as bytearray which is converted back to image, then replaces the DataGridViewTextboxCell with an DataGridViewImageCell where the image cell is loaded with the image.

C#
/// <summary>
/// Routine Perform ShowPicture for the
/// selected cell in the provided GridControl
/// </summary>
/// <param name="myGrid"></param>
/// <param name="dgvCell"></param>
/// <param name="fillIn"></param>
private void ShowPicture(DataGridView myGrid, DataGridViewCell dgvCell, bool fillIn)
{
    if (!_myAttachments.ContainsKey(dgvCell.RowIndex) || 
		_myAttachments[dgvCell.RowIndex] == null)
        return;

    //get the image
    byte[] byteData = _myAttachments[dgvCell.RowIndex];
    Image returnImage = null;

    //I was not able to figure out a way to check the format of bytearray, instead     
    //I'm using a try-catch statement which will throw an exception if not an image
    try
    {
        //Convert byte to Image
        MemoryStream ms = new MemoryStream(byteData);
        returnImage = Image.FromStream(ms, false, true);
    }
    catch
    {
        MessageBox.Show("Not an Image File", "Show Picture", 
		MessageBoxButtons.OK, MessageBoxIcon.Warning);
        return;
    }

    //Initialize new DataGridViewImageCell for the image to load
    DataGridViewImageCell dgImageCol = new DataGridViewImageCell();

    //Resize the Image
    if (fillIn)
        returnImage =ResizeImageToFitInsideTheGrid(returnImage, myGrid);

    dgImageCol.Value = returnImage;

    //When ImageWidth is greater than ColumnWidth
    //Increase the width of the column to show full size of the image
    if (myGrid.Columns[dgvCell.ColumnIndex].Width < returnImage.Width)
        myGrid.Columns[dgvCell.ColumnIndex].Width = returnImage.Width;

    //Increase the height of the column to show full size of the image   
    if (myGrid.Rows[dgvCell.RowIndex].Height < returnImage.Height)
        myGrid.Rows[dgvCell.RowIndex].Height = returnImage.Height;

    //Assign the DataGridViewImageCell to the Selected Cell
    myGrid[dgvCell.ColumnIndex, dgvCell.RowIndex] = dgImageCol;
}

Hide the Picture routine, replace the DataGridViewImageCell with a DataGridViewTextboxCell and load the file name in it.

C#
private void HidePicture(DataGridView myGrid, DataGridViewCell dgvCell)
{
    Type tp = dgvCell.GetType();
    //Check the cell type of DatabaseStorage Field is "DataGridViewTextBoxCell"
    if (tp.Name == "DataGridViewImageCell")
    {
        //Initialize new DataGridViewTextBoxCell for the text to load
        DataGridViewTextBoxCell dgTxtCol = new DataGridViewTextBoxCell();
        //Assign the file name to the cell
        dgTxtCol.Value = _myAttachmentFileNames[dgvCell.RowIndex];

        //Assign the DataGridViewTextBoxCell to the Cell of DatabaseStorage Field 
        myGrid[dgvCell.ColumnIndex, dgvCell.RowIndex] = dgTxtCol;
        myGrid.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.AllCells;
    }
}

Resizing the Image

  1. Image with large Width & Height
  2. Image with large Width
  3. Image with large Height
  4. Image with small Width
C#
private Image ResizeImageToFitInsideTheGrid(Image returnImage, DataGridView myGrid)
{
    //Case 1: Image with Large Width & Height - 
    //      Reduce image height to display height & proportionate width
    //      if the proportionate width is still greater than the display width
    //      Reduce image width to display width & proportionate height
    //Case 2: Image with Large Width - 
    //      Reduce image width to display Width & proportionate Height
    //Case 3: Image with Large Height - 
    //      Reduce image height to display Height + proportionate Width
    //Case 4: Image with Small Width & Height - Do Nothing

    //Multiplying by 0.95 helps the image to fit inside the display area

    int dgvDisplayHeight = Convert.ToInt32
	((myGrid.DisplayRectangle.Height - myGrid.ColumnHeadersHeight) * .95);
    int dgvDisplayWidth = Convert.ToInt32
	((myGrid.DisplayRectangle.Width - myGrid.RowHeadersWidth) * .95);

    //Large Width & Large Height 
    if (returnImage.Width >= dgvDisplayWidth && returnImage.Height >= dgvDisplayHeight)
    {
        int h = Convert.ToInt32(dgvDisplayHeight);
        int w = Convert.ToInt32(h * (Convert.ToDouble(returnImage.Width) / 
			Convert.ToDouble(returnImage.Height)));
        //if the proportionate width is still greater than the display width
        if (w > dgvDisplayWidth)
        {
            w = Convert.ToInt32(dgvDisplayWidth);
            h = Convert.ToInt32(w * (Convert.ToDouble(returnImage.Height) / 
			Convert.ToDouble(returnImage.Width)));
        }
        returnImage = ResizeImage(returnImage, w, h);
    }
    //Large Height 
    else if (returnImage.Width <= dgvDisplayWidth && returnImage.Height >= 
			dgvDisplayHeight)
    {
        int h = Convert.ToInt32(dgvDisplayHeight);
        int w = Convert.ToInt32(h * (Convert.ToDouble(returnImage.Width) / 
			Convert.ToDouble(returnImage.Height)));
        returnImage = ResizeImage(returnImage, w, h);
    }
    //Large Width
    else if (returnImage.Width >= dgvDisplayWidth && 
		returnImage.Height <= dgvDisplayHeight)
    {
        int w = Convert.ToInt32(dgvDisplayWidth);
        int h = Convert.ToInt32(w * 
	(Convert.ToDouble(returnImage.Height) / Convert.ToDouble(returnImage.Width)));
        returnImage = ResizeImage(returnImage, w, h);
    }
    return returnImage;
}

/// <summary>
/// Routine will resize the given images with
/// the provided height and width
/// </summary>
/// <param name="actualImage">Original Image</param>
/// <param name="width">new width</param>
/// <param name="height">new height</param>
/// <returns>Resized Image</returns>
private Image ResizeImage(Image actualImage, int width, int height)
{
    Bitmap bitmap = new Bitmap(width, height);
    using (Graphics graphics = Graphics.FromImage((Image)bitmap))
        graphics.DrawImage(actualImage, 0, 0, width, height);

    return (Image)bitmap;
}

License

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


Written By
Software Developer UVJ Technologies
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionAdding image to a SQLite database. Pin
CodeWarrior22-Dec-14 15:25
CodeWarrior22-Dec-14 15:25 
GeneralMy vote of 5 Pin
Mazen el Senih29-Mar-13 5:32
professionalMazen el Senih29-Mar-13 5:32 
QuestionQestion Pin
suraj kumar sah17-Mar-12 23:48
suraj kumar sah17-Mar-12 23:48 
AnswerMy vote of 5 Pin
Luc Pattyn27-May-11 4:34
sitebuilderLuc Pattyn27-May-11 4:34 
GeneralRe: My vote of 5 Pin
Balu Sathish29-May-11 19:42
Balu Sathish29-May-11 19:42 

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.