I have tried importing a multi page TIFF into a PDF but the encoder always gives me
a PDF Document with a single page , that being the first page of the TIFF Image. Is there anyway to import a multi-page tiff into a pdf document with the import giving 1 page in the pdf per page of the tiff file ?
Hi
PdfEncoder pdf = new PdfEncoder();
pdf.Xmp = data;
encoder = pdf;
this.annotateViewer1.Save(_filename, encoder, -1);
Probably, you give the value '1' to parameter3, instead of -1.
-1 converts all pages.