ImageBuffer.Bitmap Property

Returns a bitmap object representing the image data of this ImageBuffer.
Syntax:
[C#]
public System.Drawing.Bitmap Bitmap;
Limitations:

Read only.

Sample:

The following example shows how to retrieve a Bitmap object and save it as a PNG file.

[C#]
Bitmap bmp = ICImagingControl1.ImageActiveBuffer.Bitmap; bmp.Save("C:\\membuf.png", System.Drawing.Imaging.ImageFormat.Png);
See also: ImageBuffer

<< ImageAvailableEventArgs.ImageBuffer