Load Multiframe Image
TIFF JPG Read Write Multiple frames Filesystem
Loads multiframe image.
Сode Snippet
using (var reader = new TiffReader("TIFFMultiframe.tif"))
{
for (int i = 0; i < reader.Frames.Count; i++)
{
using (var bitmap = reader.Frames[i].GetBitmap())
{
bitmap.Save("LoadMultiframe_" + i + ".jpg");
}
}
}
Input
TIFFMultiframe.tif
DownloadOutput
LoadMultiframe_0.jpg
LoadMultiframe_1.jpg
For AI-assisted development: Download Graphics Mill Code Samples XML Catalog