Saves the specifies frame (image) to file. The file format is given by the name extension.
Namespace: HiComponents.IEvolutionAssembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0
Syntax
C# | Visual Basic | Visual C++ |
public void GetImageToFile( int index, string fileName )
Public Sub GetImageToFile ( _ index As Integer, _ fileName As String _ )
public: void GetImageToFile( int index, String^ fileName )
Parameters
- index
- Int32
the image index (0=first image)
- fileName
- String
destination path and file name
Examples
CopyC#
ieViewer1.ImageList.LoadImages("multipage.tif"); ieViewer1.GetImageToFile(0,"page1.png"); ieViewer1.GetImageToFile(1,"page2.png");