'Declaration
Public Overloads Function AppendToTiff( _ ByVal ImageID As Integer, _ ByVal FilePath As String, _ ByVal Compression As TiffCompression, _ ByVal JpegQuality As Integer _ ) As GdPictureStatus
public GdPictureStatus AppendToTiff( int ImageID, string FilePath, TiffCompression Compression, int JpegQuality )
public function AppendToTiff( ImageID: Integer; FilePath: String; Compression: TiffCompression; JpegQuality: Integer ): GdPictureStatus;
public function AppendToTiff( ImageID : int, FilePath : String, Compression : TiffCompression, JpegQuality : int ) : GdPictureStatus;
public: GdPictureStatus AppendToTiff( int ImageID, string* FilePath, TiffCompression Compression, int JpegQuality )
public: GdPictureStatus AppendToTiff( int ImageID, String^ FilePath, TiffCompression Compression, int JpegQuality )
Parameters
- ImageID
- A unique image identifier of the GdPicture image representing the single image, that you want to append as a new page at the end of the destination TIFF file.
- FilePath
- The file path of the destination TIFF file, where the specified image will be appended. If this file does not exist, it will be created.
- Compression
- A member of the TiffCompression enumeration. The resulting TIFF compression scheme to be used.
- JpegQuality
- Specifies the JPEG compression quality, between 1 (worst quality) and 100 (better quality). This parameter is ignored when the specified TIFF compression scheme is different than JPEG.
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.