'Declaration
Public Overloads Function TiffExtractPage( _ ByVal ImageID As Integer, _ ByVal Page As Integer, _ ByVal FilePath As String, _ Optional ByVal Compression As TiffCompression _ ) As GdPictureStatus
public GdPictureStatus TiffExtractPage( int ImageID, int Page, string FilePath, TiffCompression Compression )
public function TiffExtractPage( ImageID: Integer; Page: Integer; FilePath: String; Compression: TiffCompression ): GdPictureStatus;
public function TiffExtractPage( ImageID : int, Page : int, FilePath : String, Compression : TiffCompression ) : GdPictureStatus;
public: GdPictureStatus TiffExtractPage( int ImageID, int Page, string* FilePath, TiffCompression Compression )
public: GdPictureStatus TiffExtractPage( int ImageID, int Page, String^ FilePath, TiffCompression Compression )
Parameters
- ImageID
- A unique image identifier of the GdPicture image representing the multipage TIFF image.
- Page
- The page number of a page you want to extract. It must be a value from 1 to TiffGetPageCount.
- FilePath
- The file path where the TIFF image of the extracted page will be saved. If the specified file already exists, it will be overwritten.
- Compression
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.