Problem about inserting tiff as a image

Dear Sir
web use bellow code to insert a tiff document that there are four pages into Word ,but it only show the first picture from Tiff .

DocumentBuilder db = new DocumentBuilder(document);
db.MoveTo(lastMergedNode );
db.InsertImage(pdfStream );
// Insert a paragraph break to avoid overlapping images.
db.Writeln();

@wengyeung Please see our documentation to learn how to convert multi-frame tiff to PDF using Aspose.Words:
https://docs.aspose.com/words/net/convert-a-document-to-pdf/#convert-an-image-to-pdf

Dear Sir
Thanks , We had resolved it by converting the word document page one by one .

1 Like