GdPicture image identifier. The GdPicture image to store as the first page of the multipage JBIG2 file.Do not release this image before ending the multipage JBIG2 file with the JBIG2CloseMultiPageFile() method. (see example).
The path of the multipage tiff file to create.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / JBIG2SaveAsMultiPageFile Method

JBIG2SaveAsMultiPageFile Method (GdPictureImaging)

In This Topic
Stores a GdPicture image as first page of a new multipage JBIG2 file. You will be able to append new page to the created file using the JBIG2AddToMultiPageFile() method.
Syntax
'Declaration
 
Public Function JBIG2SaveAsMultiPageFile( _
   ByVal ImageID As Integer, _
   ByVal FilePath As String _
) As GdPictureStatus
public GdPictureStatus JBIG2SaveAsMultiPageFile( 
   int ImageID,
   string FilePath
)
public function JBIG2SaveAsMultiPageFile( 
    ImageID: Integer;
    FilePath: String
): GdPictureStatus; 
public function JBIG2SaveAsMultiPageFile( 
   ImageID : int,
   FilePath : String
) : GdPictureStatus;
public: GdPictureStatus JBIG2SaveAsMultiPageFile( 
   int ImageID,
   string* FilePath
) 
public:
GdPictureStatus JBIG2SaveAsMultiPageFile( 
   int ImageID,
   String^ FilePath
) 

Parameters

ImageID
GdPicture image identifier. The GdPicture image to store as the first page of the multipage JBIG2 file.Do not release this image before ending the multipage JBIG2 file with the JBIG2CloseMultiPageFile() method. (see example).
FilePath
The path of the multipage tiff file to create.

Return Value

A member of the GdPictureStatus enumeration.
Remarks

This method requires the Image Documents component to run.

See Also