'Declaration
Public Overloads Function TiffSaveMultiPageToFile( _ ByVal ImageID As Integer, _ ByVal FilePath As String, _ ByVal Compression As TiffCompression _ ) As GdPictureStatus
public GdPictureStatus TiffSaveMultiPageToFile( int ImageID, string FilePath, TiffCompression Compression )
public function TiffSaveMultiPageToFile( ImageID: Integer; FilePath: String; Compression: TiffCompression ): GdPictureStatus;
public function TiffSaveMultiPageToFile( ImageID : int, FilePath : String, Compression : TiffCompression ) : GdPictureStatus;
public: GdPictureStatus TiffSaveMultiPageToFile( int ImageID, string* FilePath, TiffCompression Compression )
public: GdPictureStatus TiffSaveMultiPageToFile( int ImageID, String^ FilePath, TiffCompression Compression )
Parameters
- ImageID
- A unique image identifier of the GdPicture image representing the editable multipage TIFF image to be saved.
- FilePath
- The file path where the specified image will be saved. Be aware, that if the destination file path is the same as the source file path, the method will fail unless the image has not been loaded in memory.
- Compression
- A member of the TiffCompression enumeration. The resulting TIFF compression scheme to be used.
Please note that if you apply the JPEG compression, the quality factor used by default is 90. You can use the overloaded GdPictureImaging.TiffSaveMultiPageToFile method to set your preferred value for the JpegQuality parameter.