FrameExtensions.SaveAsBitmap Method

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

The image to save.

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 3.5

Example::

Small example showing how to fetch a simple image and save it in a file.

[C#]
FrameSnapSink sink = new FrameSnapSink(MediaSubtypes.RGB32); ICImagingControl1.Sink = sink; ICImagingControl1.LiveStart(); // fetch a single image IFrameQueueBuffer frame = sink.SnapSingle(TimeSpan.FromSeconds(5)); FrameExtensions.SaveAsBitmap( frame, "test.bmp"); FrameExtensions.SaveAsJpeg( frame, "test.jpg", 90); FrameExtensions.SaveAsTiff( frame, "test.tiff");
See also: FrameExtensions, FrameExtensions.SaveAsJpeg, FrameExtensions.SaveAsTiff, IFrame

<< FrameExtensions