TiffInsertPageFromGdPictureImage(Int32,Int32,Int32) Method
Inserts a new page from the specified GdPicture image at a given position 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.
public function TiffInsertPageFromGdPictureImage(
: Integer;
: Integer;
: Integer
): GdPictureStatus;
public function TiffInsertPageFromGdPictureImage(
: int,
: int,
: int
) : GdPictureStatus;
public: GdPictureStatus TiffInsertPageFromGdPictureImage(
int ,
int ,
int
)
public:
GdPictureStatus TiffInsertPageFromGdPictureImage(
int ,
int ,
int
)
'Declaration
Public Overloads Function TiffInsertPageFromGdPictureImage( _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
) As GdPictureStatus
Parameters
- EditableTiffID
- A unique image identifier of the GdPicture image representing the editable multipage TIFF image, in which the new page will be inserted.
- Position
- The required position of the page to insert, that means the page number for the newly inserted page. It must be a value from 1 to GdPictureImaging.TiffGetPageCount.
- ImageToAddID
- A unique image identifier of the GdPicture image representing the image, which will be inserted at the given page position of the specified editable multipage TIFF image.
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.