Hello, all. I am currently evaluating GroupDocs Conversion for .NET (19.9.0) to replace an existing document conversion tool that we have. So far, I have been able to implement all of our required use cases except for one. We have a need to convert multi-page TIFFs to PDFs. So far, I have only been able to convert the main image to a single page PDF. Is this possible? If so, how would I accomplish this?
The code I am using is quite simple:
using (var converter = new Converter(() => sourceStream))
{
converter.Convert(new SaveDocumentStream(() => targetStream), new PdfConvertOptions());
}
Thanks.