ImageBuffer.SaveImage Method

Saves the contents of the buffer to disk.
Syntax:
Public Sub SaveImage(Filename As String)
Parameter Description
Filename

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

Sample:

This example shows how to save the contents of an ImageBuffer to a file called "test.bmp":

Dim Buf As ImageBuffer
Set Buf = ICImagingControl1.ImageBuffers.Item(1)
Buf.SaveImage "test.bmp"
See also: ImageBuffer

<< ImageBuffer