'Declaration
Public Overloads Function TiffSaveAsMultiPageFile( _ ByVal ImageID As Integer, _ ByVal Stream As Stream, _ ByVal Compression As TiffCompression, _ ByVal JpegQuality As Integer _ ) As GdPictureStatus
public GdPictureStatus TiffSaveAsMultiPageFile( int ImageID, Stream Stream, TiffCompression Compression, int JpegQuality )
public function TiffSaveAsMultiPageFile( ImageID: Integer; Stream: Stream; Compression: TiffCompression; JpegQuality: Integer ): GdPictureStatus;
public function TiffSaveAsMultiPageFile( ImageID : int, Stream : Stream, Compression : TiffCompression, JpegQuality : int ) : GdPictureStatus;
public: GdPictureStatus TiffSaveAsMultiPageFile( int ImageID, Stream* Stream, TiffCompression Compression, int JpegQuality )
public: GdPictureStatus TiffSaveAsMultiPageFile( int ImageID, Stream^ Stream, TiffCompression Compression, int JpegQuality )
Parameters
- ImageID
- A unique image identifier of the GdPicture image representing the first page of the resulting multipage TIFF image file. Do not release this image resource before closing the resulting multipage TIFF image file using the GdPictureImaging.TiffCloseMultiPageFile method.
Please follow the attached example on how to properly use the method.
- Stream
- A Stream object where the newly created multipage TIFF image file will be stored. This Stream object must be initialized before it can be sent into this method and it should remain open for subsequent use.
- Compression
- A member of the TiffCompression enumeration. The resulting TIFF compression scheme to be used.
- JpegQuality
- The compression quality level from 0 to 100. 0 means the worst quality and the best compression, 100 means the best quality and the worst compression. This parameter is ignored when the required compression scheme is different than JPEG.