![]() |
Creates a multipage PDF from a multipage tiff image.
This image can be a read only multipage tiff image or an editable multipage tiff image.
public GdPictureStatus PdfCreateFromMultipageTIFF( int ImageID, String PdfFileDest, Boolean PDFA, String Title, String Author, String Subject, String Keywords, String Creator );
Public Function PdfCreateFromMultipageTIFF( ByVal ImageID As Integer, ByVal PdfFileDest As String, ByVal PDFA As Boolean, ByVal Title As String, ByVal Author As String, ByVal Subject As String, ByVal Keywords As String, ByVal Creator As String ) As GdPictureStatus
|
Parameters |
Description |
|
ImageID |
GdPicture Image Identifier. The multipage tiff image to save as PDF. |
|
PdfFileDest |
The destination of the pdf to create. |
|
PDFA |
True to generate PDF in PDF/A format else False. |
|
Title |
The title of the PDF. |
|
Author |
The PDF Author. |
|
Subject |
The PDF Subject. |
|
Keywords |
The PDF Keywords. |
|
Creator |
The name of the application which creates the PDF. |
A member of the GdPictureStatus enumeration.
How to convert a multipage tif file to a multipage pdf file
Dim MultipageImageID As Integer oGdPictureImaging.TiffOpenMultiPageForWrite(False) 'for better performances MultipageImageID = oGdPictureImaging.CreateGdPictureImageFromFile("multipage.tif") oGdPictureImaging.PdfCreateFromMultipageTIFF(MultipageImageID, "multipage.pdf", True, "MyPdfTitle", "MyPdfAuthor", "MyPdfSubject", "MyPdfKeywords", "MyPdfCreator") oGdPictureImaging.ReleaseGdPictureImage(MultipageImageID)
|
What do you think about this topic? Send feedback!
|
|
Copyright (c) 2009-2011 www.gdpicture.com. All rights reserved.
|