// The path to the documents directory.
string dataDir = RunExamples.GetDataDir_ModifyingAndConvertingImages();

// Create an instance of TiffImage and load the file from disc
using (var multiImage = (TiffImage)Image.Load(dataDir + "SampleTiff1.tiff"))
{
    // Initialize a variable to keep track of the frames in the image, Iterate over the tiff frame collection and Save the image
    int i = 0;
    foreach (var tiffFrame in multiImage.Frames)
    {
        tiffFrame.Save(dataDir + i + "_out.tiff", new TiffOptions(TiffExpectedFormat.TiffJpegRgb));
    }
}