How to upgrade aspose.pdf dll version 7.6.0.0 with latest version in .net

How to upgrade aspose.pdf dll version 7.6.0.0 with latest version in .net.we need to convert tiff image to pdf aspose.pdf dll version 7.6.0.0 not supporting this feature

@kamal_ahmad

Thank you for contacting support.

You may use below code snippet with Aspose.PDF for .NET 19.11 and test the API in its full capacity by applying a free 30-days temporary license and purchase a license after evaluation. Moreover, you may refer to documentation, API references or search on forums, for reference.

                Aspose.Pdf.Document doc = new Document();
                // add blank page to pages collection of Document instance
                doc.Pages.Add();
                // create Image object
                Aspose.Pdf.Image image = new Aspose.Pdf.Image();
                image.File = sourceFile;
                // add image to paragraphs collection of PDF page
                doc.Pages[1].Paragraphs.Add(image);
                // save the file to the destination location, inside the folder (named as docid value)
                doc.Save(destinationPDFfile);

Please feel free to contact us if you need any further assistance.