See Also Examples Applies To
Adds an image to the native multipage tif file created by the TiffSaveAsNativeMultiPage() function.
Syntax
object.TiffAddToNativeMultiPage (nimageID)
The TiffAddToNativeMultiPage syntax has these parts:
| Part | Description |
| object | Required. An object expression that evaluates to an object in the Applies To list. |
| nimageID | Required. Long. GdPicture Image handle. The image to add. |
Returns
Long. GdPictureStatus
Category
Multipage TIFF Functions
Visual Basic Sample
How to create multipage tif image from several existing image files:
Dim nImageID As Long
nImageID = object.CreateImageFromFile( "image1.jpg")
object.TiffSaveAsNativeMultiPage ("multipage.tif")
nImageID = object.CreateImageFromFile("image2.jpg")
object.TiffAddToNativeMultipage (nImageID)
object.CloseImage (nImageID)
nImageID = object.CreateImageFromFile("image3.jpg")
object.TiffAddToNativeMultipage (nImageID)
object.CloseImage (nImageID)
object.TiffCloseNativeMultiPage