A unique image identifier of the GdPicture image representing the editable multipage TIFF image, in which the new page will be added.
The file path of the image file, which will be appended to the specified editable multipage TIFF image.

Supported input document formats are listed here.






In This Topic
GdPicture14 Namespace / GdPictureImaging Class / TiffAppendPageFromFile Method

TiffAppendPageFromFile Method (GdPictureImaging)

In This Topic
Appends a new page from the specified file to the end of an editable multipage TIFF image, that is represented by its unique image identifier.

This method only handles editable multipage TIFF images; otherwise it will fail.

Syntax
'Declaration
 
Public Function TiffAppendPageFromFile( _
   ByVal EditableTiffID As Integer, _
   ByVal FilePath As String _
) As GdPictureStatus
public GdPictureStatus TiffAppendPageFromFile( 
   int EditableTiffID,
   string FilePath
)
public function TiffAppendPageFromFile( 
    EditableTiffID: Integer;
    FilePath: String
): GdPictureStatus; 
public function TiffAppendPageFromFile( 
   EditableTiffID : int,
   FilePath : String
) : GdPictureStatus;
public: GdPictureStatus TiffAppendPageFromFile( 
   int EditableTiffID,
   string* FilePath
) 
public:
GdPictureStatus TiffAppendPageFromFile( 
   int EditableTiffID,
   String^ FilePath
) 

Parameters

EditableTiffID
A unique image identifier of the GdPicture image representing the editable multipage TIFF image, in which the new page will be added.
FilePath
The file path of the image file, which will be appended to the specified editable multipage TIFF image.

Supported input document formats are listed here.

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.
Remarks
Be aware that this method only handles editable multipage TIFF images. You can use the TiffIsEditableMultiPage method to check if a required image is an editable multipage TIFF image.

Likewise, for saving the provided modifications you need to use the TiffSaveMultiPageToFile(Int32,String,TiffCompression) method.

This method requires the Image Documents component to run.

See Also