Convert PDF to TIFF using Aspose.PDF in C#

The demonstration code at on this page shows that a pdf can be saved as a TIFF using Aspose.PDF.

 // load the PDF file to be converted
 var document = new Aspose.Pdf.Document("My File.pdf");
 // save PDF as a TIFF
 document.Save("Saved File.tiff", Aspose.Pdf.SaveFormat.Tiff);

However, when I try to recreate that code, the TIFF enum does not appear to be available. What am I missing?

@mwbrady687

Please try using the code snippet given in the below documentation article(s):