ImageBuffer.SaveAsTiff Method

Saves the contents of the image buffer as a TIFF file.
Syntax:
[C#]
public void SaveAsTiff(string fileName);
Parameter Description
Filename

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

Remarks:

This method only supports Y800, Y16, RGB24, RGB32 and RGB64 image buffers.

Information:

Introduced in version 3.3

Sample:

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

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

<< ImageAvailableEventArgs.ImageBuffer