GdPicture image identifier. The GdPicture image used with the JBIG2SaveAsMultiPageFile() method. This must be the first image ot the file.
GdPicture image identifier. The image to append within multipage JBIG2 file. You will be able to release this image after calling this method.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / JBIG2AddToMultiPageFile Method

JBIG2AddToMultiPageFile Method (GdPictureImaging)

In This Topic
Adds a page to a multipage JBIG2 file created with the JBIG2SaveAsMultiPageFile() method.
Syntax
'Declaration
 
Public Function JBIG2AddToMultiPageFile( _
   ByVal ImageID As Integer, _
   ByVal ImageToAddID As Integer _
) As GdPictureStatus
public GdPictureStatus JBIG2AddToMultiPageFile( 
   int ImageID,
   int ImageToAddID
)
public function JBIG2AddToMultiPageFile( 
    ImageID: Integer;
    ImageToAddID: Integer
): GdPictureStatus; 
public function JBIG2AddToMultiPageFile( 
   ImageID : int,
   ImageToAddID : int
) : GdPictureStatus;
public: GdPictureStatus JBIG2AddToMultiPageFile( 
   int ImageID,
   int ImageToAddID
) 
public:
GdPictureStatus JBIG2AddToMultiPageFile( 
   int ImageID,
   int ImageToAddID
) 

Parameters

ImageID
GdPicture image identifier. The GdPicture image used with the JBIG2SaveAsMultiPageFile() method. This must be the first image ot the file.
ImageToAddID
GdPicture image identifier. The image to append within multipage JBIG2 file. You will be able to release this image after calling this method.

Return Value

A member of the GdPictureStatus enumeration.
Remarks
Use the JBIG2CloseMultiPageFile() method when you don't want to append new page to the multipage JBIG2 file.

This method requires the Image Documents component to run.

See Also