ExtractTIFFImageFile extracts the page index (starting at 0) from SourceFileName and saves it to OutFileName.

It doesn’t remove the page from source file; also it doesn’t decompress the image resulting in a very quick process.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void ExtractTIFFImageFile(
	string sourceFileName,
	string outFileName,
	int index
)
Public Shared Sub ExtractTIFFImageFile ( _
	sourceFileName As String, _
	outFileName As String, _
	index As Integer _
)
public:
static void ExtractTIFFImageFile(
	String^ sourceFileName, 
	String^ outFileName, 
	int index
)

Parameters

sourceFileName
String
The source file name
outFileName
String
The destination file name
index
Int32
The index of the page to extract

See Also