Read Multiframe TIFF

TIFF Multiple frames Read

Reads multiframe image in TIFF format.

Сode Snippet

using (var reader = new TiffReader("WriteMultiframeTiff.tif"))
{
    for (int i = 0; i < reader.Frames.Count; i++)
    {
        using (var bitmap = reader.Frames[i].GetBitmap())
        {
            bitmap.Save("ReadMultiframeTiff_" + i + ".jpg");
        }
    }
}

Input

WriteMultiframeTiff.tif

Download

Output

ReadMultiframeTiff_0.jpg

ReadMultiframeTiff_1.jpg

For AI-assisted development: Download Graphics Mill Code Samples XML Catalog