Remove a page from a TIFF.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static int DeleteTIFFPage(
	string fileName,
	int pageIndex
)
Public Shared Function DeleteTIFFPage ( _
	fileName As String, _
	pageIndex As Integer _
) As Integer
public:
static int DeleteTIFFPage(
	String^ fileName, 
	int pageIndex
)

Parameters

fileName
String
the file name of the TIFF
pageIndex
Int32
the page to remove (0 is the first page)

Return Value

Returns the remaining number of pages that the file contains.

Examples

CopyC#
IEImage.DeleteTIFFPage("test.tiff",0);

See Also