ImageBuffer.SaveAsBitmap Method

Saves the contents of the buffer to a bitmap file on disk.
Syntax:
[C#]
public void SaveAsBitmap(string Filename, ICImagingControlColorformats colorformat);
Parameter Description
Filename

The name of the file to which the buffer is saved.

colorformat

The desired color format of the bitmap file.

Information:

Introduced in version 2.0

Sample:

This example shows how to save the contents of an ImageBuffer as an 8-bit gray bitmap:

[C#]
ImageBuffer buf = ICImagingControl1.ImageBuffers[0]; buf.SaveAsBitmap("test.bmp", ICImagingControlColorformats.ICY8);
See also: ImageBuffer, ImageBuffer.SaveAsJpeg, ImageBuffer.SaveAsTiff

<< ImageAvailableEventArgs.ImageBuffer