'Declaration
Public Overloads Function TiffCreateMultiPageFromFile( _ ByVal FilePath As String _ ) As Integer
public int TiffCreateMultiPageFromFile( string FilePath )
public function TiffCreateMultiPageFromFile( FilePath: String ): Integer;
public function TiffCreateMultiPageFromFile( FilePath : String ) : int;
public: int TiffCreateMultiPageFromFile( string* FilePath )
public: int TiffCreateMultiPageFromFile( String^ FilePath )
Parameters
- FilePath
- The file path of the source file. Use the empty string to allow the control to prompt users to select a file.
You can subsequently use the GetLastPath method to retrieve the path of the selected file.
Return Value
A unique image identifier of the GdPicture image representing the newly created editable multipage TIFF image. The returned value is non-zero if the image is successfully created. Please first of all use the GetStat method to determine if this method has been successful.
Be aware that you need to release the image with the ReleaseGdPictureImage method after being used.