GdPicture.NET.14.API
GdPicture14 Namespace / GdPictureImaging Class / PdfCreateFromMultipageTIFF Method / PdfCreateFromMultipageTIFF(Int32,String,Boolean,String,String,String,String,String) Method
GdPicture image identifier. The multipage tiff image to save as PDF.
The destination of the pdf to create.
True to generate PDF in PDF/A 1-b format else False.
The title of the PDF.
The PDF Author.
The PDF Subject.
The PDF Keywords.
The name of the application which creates the PDF.
Example





In This Topic
PdfCreateFromMultipageTIFF(Int32,String,Boolean,String,String,String,String,String) Method
In This Topic
Creates a multipage PDF from a multipage tiff image.
Syntax
'Declaration
 
Public Overloads 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
public GdPictureStatus PdfCreateFromMultipageTIFF( 
   int ImageID,
   string PdfFileDest,
   bool PDFA,
   string Title,
   string Author,
   string Subject,
   string Keywords,
   string Creator
)
public function PdfCreateFromMultipageTIFF( 
    ImageID: Integer;
    PdfFileDest: String;
    PDFA: Boolean;
    Title: String;
    Author: String;
    Subject: String;
    Keywords: String;
    Creator: String
): GdPictureStatus; 
public function PdfCreateFromMultipageTIFF( 
   ImageID : int,
   PdfFileDest : String,
   PDFA : boolean,
   Title : String,
   Author : String,
   Subject : String,
   Keywords : String,
   Creator : String
) : GdPictureStatus;
public: GdPictureStatus PdfCreateFromMultipageTIFF( 
   int ImageID,
   string* PdfFileDest,
   bool PDFA,
   string* Title,
   string* Author,
   string* Subject,
   string* Keywords,
   string* Creator
) 
public:
GdPictureStatus PdfCreateFromMultipageTIFF( 
   int ImageID,
   String^ PdfFileDest,
   bool PDFA,
   String^ Title,
   String^ Author,
   String^ Subject,
   String^ Keywords,
   String^ Creator
) 

Parameters

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 1-b 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.

Return Value

A member of the GdPictureStatus enumeration.
Example
Saving a multipage tiff file to a PDF document.
using (GdPictureImaging gdpictureImaging = new GdPictureImaging())
{
    int imageID = gdpictureImaging.CreateGdPictureImageFromFile("multipage.tiff");
    gdpictureImaging.PdfCreateFromMultipageTIFF(imageID, "output.pdf", true, "PDF from TIFF", "GdPicture.NET 14", "For test", "pdf, tiff", "Orpalis");
    gdpictureImaging.ReleaseGdPictureImage(imageID);
}
See Also