See Also Examples Applies To
Creates a multipage PDF/A from a multipage tiff image. This image can be a read only multipage tiff image or an editable multipage tiff image.
Syntax
object.PdfACreateFromMultipageTIFFEx (nImageID, sPdfFileDest, sTitle, sAuthor, sSubject, sKeywords, sCreator)
The PdfACreateFromMultipageTIFFEx 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 multipage tiff image to save as PDF. |
| sPdfFileDest | Required. String. The destination of the pdf to create. |
| sTitle | Optional. String. Default value is "". The PDF Title. |
| sAuthor | Optional. String. Default value is "". The PDF Author. |
| sSubject | Optional. String. Default value is "". The PDF Subject. |
| sKeywords | Optional. String. Default value is "". The PDF Keywords. |
| sCreator | Optional. String. Default value is "". The PDF Creator. |
Returns
Long. GdPictureStatus
Category
PDF Functions
Visual Basic Sample
How to convert a multipage tif file to a multipage pdf file
Dim nMultipageImageID As Long
Dim nSuccess as Long
nMultipageImageID = object.CreateImageFromFile("multipage.tif")
nSuccess = object.PdfACreateFromMultipageTIFFEx(nMultipageImageID, "multipage.pdf")
Call object.CloseImage(nMultipageImageID)