Image Acquisition: Saving an Image (BMP)

Short source code snippet that illustrates how to freeze an image data stream and save the frozen image as a BMP file.
Language:.NET C#/Visual Basic
Version:3.0.3
Released on:April 7, 2005
Author:IC Imaging Control Support Department
Requirements:IC Imaging Control >2.1
Camera, converter or grabber with WDM Stream Class drivers.

The window of the resulting application looks as follows:

The Testdialog of IC Imaging Control,

First of all, IC Imaging Control and a button to save an image to file are dragged onto the form.

The program starts by activating a built-in dialog box that enables the end user to select a video capture device (.ShowDeviceSettingsDialog). Then, the live image data stream from the video capture device is displayed, using .LiveStart:

[C#]
private void Form1_Load(object sender, System.EventArgs e)
{
    icImagingControl1.ShowDeviceSettingsDialog();
    if( icImagingControl1.DeviceValid )
    {
        icImagingControl1.LiveStart();
    }
    else
    {
        Close();
    }
}

When the user clicks "Save BMP", .MemorySnapImage grabs an image from the image data stream and writes it to the internal ring buffer. On completion, dlg.ShowDialog() activates the Windows dialog box, so the end user can save the image to disk. In the last step, .MemorySaveImage writes the buffered image to file:

[C#]
private void btnSaveBMP_Click(object sender, System.EventArgs e)
{
    icImagingControl1.MemorySnapImage();

    SaveFileDialog dlg = new SaveFileDialog();
    dlg.AddExtension = true;
    dlg.DefaultExt = "bmp";
    dlg.Filter = "BMP Images (*.bmp)|*.bmp||";
    dlg.OverwritePrompt = true;

    if( dlg.ShowDialog() == DialogResult.OK )
    {
        icImagingControl1.MemorySaveImage( dlg.FileName );
    }
}

Related Source Code Samples

Disclaimer
The source code that appears in the IC Imaging Control Source Code Library is indented for educational purposes only. The Imaging Source Europe GmbH, the manufacturer of IC Imaging Control, does not assume any kind of warranty expressed or implied, resulting from the use of the content of this page.

This site is part of The Imaging Source Network. Other sites include Company Portal, Image Processing, Astronomy Cameras, Astronomy Cameras Blog, Blog caméras d'astronomie, Astronomy Cameras Competition, TX Text Control, LiveDocx, phpLiveDocx and Forums.